- (void)touchesBegan
touchesEnd
touchesCancelled
touchesMoved
//代表的是手指在屏幕上的动作,开始 结束 取消 移动
//还有就是代表摇动的方法
-(void)motionBegan
motionEnd
motionCancelled
隐藏键盘
resignFirstResponser
弹出键盘
becomeFirstResponser
//获取应用程序的Documents目录
NSSearch *forDirectories = [NSDocumentDirectory NSUserDomainMesk , InDomain, YES];
@property (nonatomic) UIViewControllerMode contentMode;
@property (nonatomic)UIViewContentModeScale(TOFillAspectFill, AspectFit);
//ToFill代表的是填充
//AspectFill 内容填充 AspectFit 内容适应!
CGSize和NSSize
CGPoint和NSPointCGRect和NSRect
CGFloat和NSFloat
都是一样的用法~
//@protocol
@protocol Foo <other, NSObject>//应用此协议就必须实现的
- (void)something;
@optional//可以实现也可以不是实现
```
@required
```
@end