1.iOS开发延时操作
最直接的方法performSelector:withObject:afterDelay: 这种方法的缺点:每次要为延时写一个方法
[self performSelector:@selector(chooseJump) withObject:nil afterDelay:1.5f];
实现chooseJump方法,延时1.5s在做完chooseJump方法后
另外扩充的几种方法:
http://www.2cto.com/kf/201402/277830.html
2.沙盒存储:用户名密码存取,plist文件存取
http://blog.sina.com.cn/s/blog_74461f320101anxf.html
3.//更改进度条高度
progressView.transform = CGAffineTransformMakeScale(1.0f,3.0f);
4.UITextField详解