测试
这里是引用
这是粗体
这是斜体
@protocol touchViewDelegate <NSObject>
- (void)changeColor;
@end
@interface TouchView : UIView
@property (nonatomic, retain) UITextField *text;
//设置一个代理属性
@property (nonatomic, assign) id <touchViewDelegate> delegate;
@end`
这里是引用
这是粗体
这是斜体
@protocol touchViewDelegate <NSObject>