mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 00:19:10 +08:00
24 lines
449 B
Objective-C
24 lines
449 B
Objective-C
//
|
|
// InfoMenuLabel.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 24.09.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol InfoMenuLabelDelegate <NSObject>
|
|
|
|
@optional - (void)InfoMenuLabelSetNewName:(NSString *)newname;
|
|
|
|
@end
|
|
|
|
@interface InfoMenuLabel : UILabel
|
|
|
|
@property( weak, nonatomic ) id<InfoMenuLabelDelegate> delegate;
|
|
|
|
- (void)customMenuAction:(id)sender;
|
|
|
|
@end
|