博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Objective-C 学习记录--toches、Motion/Size/Rect/Point/CGFloat/protocol
阅读量:6655 次
发布时间:2019-06-25

本文共 723 字,大约阅读时间需要 2 分钟。

- (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://www.cnblogs.com/ievjai/p/4217186.html

你可能感兴趣的文章
js bool true false 比较
查看>>
Stream(流)的基本操作
查看>>
使用 GIT 获得Linux Kernel的代码并查看,追踪历史记录
查看>>
反向传播神经网络极简入门
查看>>
Objective-C中的@dynamic
查看>>
STORM在线业务实践-集群空闲CPU飙高问题排查(转)
查看>>
Section Formula
查看>>
预处理指令
查看>>
笔记本CPU的型号和类型的区分方法
查看>>
fzu2020( c(n,m)%p,其中n, m, p (1 <= m <= n <= 10^9, m <= 10^4, m < p < 10^9, p是素数) )
查看>>
发送邮件(E-mail)方法整理合集
查看>>
(转)sqlite developer注册方法
查看>>
最大值 最小值 最初值 最末值
查看>>
Anagrams
查看>>
iphone手机分辨率--持久维护
查看>>
DRP——Servlet(一)
查看>>
pydoc介绍
查看>>
使用rsyslog+loganalzey收集日志显示客户端ip
查看>>
EF实现主从表自动生成主键保存
查看>>
Atitit.程序包装exe启动器 打包 发布 设计 -生成exe java
查看>>