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