Objective-C 学习记录--toches、Motion/Size/Rect/Point/CGFloat/protocol
- (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
作者:叉叉敌
博客:https://chasays.github.io/
微信公众号:Chasays, 欢迎关注一起吹牛逼,也可以加个人微信号「xxd_0225」互吹。
本博客大多为学习笔记或读书笔记,本文如对您有帮助,还请多推荐下此文,如有错误欢迎指正,相互学习,共同进步。