| 12345678910111213141516171819202122232425262728293031 |
- //
- // TouchLabel.h
- // Apex Mobile
- //
- // Created by Ray on 14-3-5.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- @class TouchLabel;
- @protocol TouchLabelDelegate <NSObject>
- @required
- - (void)touchLabel:(TouchLabel *)touchLabel touchesWtihTag:(NSInteger)tag;
- - (void)touchLabel:(TouchLabel *)touchLabel OnTouche:(TouchLabel*) label;
- @end
- @interface TouchLabel : UILabel
- {
- @private
- // id <MDSpreadViewDataSource>__unsafe_unretained _dataSource;
- id <TouchLabelDelegate> __unsafe_unretained delegate;
- }
- //@property (unsafe_unretained) IBOutlet id <MDSpreadViewDataSource> dataSource;
- @property (unsafe_unretained) id <TouchLabelDelegate> delegate;
- - (id)initWithFrame:(CGRect)frame;
- @property(nonatomic) UIEdgeInsets insets;
- @end
|