1.//在text view获得焦点之前会调用textViewShouldBeginEditing: 方法。 - (BOOL)textViewShouldBeginEditi...
1.//在text view获得焦点之前会调用textViewShouldBeginEditing: 方法。 - (BOOL)textViewShouldBeginEditi...
UIViewController * releaseVC = [[UIViewController alloc] init]; releaseVC.view.backgrou...
提示JSON text did not start with array or object and option to allow fragments not set 看到...
1. 打开终端,开启Apache: //开启apache: sudo apachectl start//重启apache: sudo apachectl restart//关...
1.AVPlayer:基于Layer显示,自己编写面板,最好对AVPlayer封装. 2.MPMoverPlayerController :自带播放面板,iOS9后弃用. 3...
想成功升级cocoapods需要一个正确的操作流程和命令语句。 1、更新gem:sudo gem update --system 2、删除gem源:gem sources -...
一:规律: 1>但凡取值中包含Scale单词的,都会对图片进行拉伸(缩放); 2>但凡取值中没有出现Scale单词的,都不会对图片进行拉伸; 3>但凡取值中包含Aspect单...
“ld: symbol(s) not found for architecture arm64 clang: error: linker command failed wit...
转载地址://www.greatytc.com/p/707de2a1046d//www.greatytc.com/p/5e1a76535221
很多场合,我们需要判断滑动UITableView时,屏幕上对应显示的是哪个Cell,来做一些特殊的处理。 1.- (NSArray*)visibleCells; //UITa...
// v上的(0, 0)点在toView上的位置 CGPointpoint = [v convertPoint:CGPointMake(0,0) toView:[UIAppl...
因为UITableView是直接继承UIScrollView的,所以只要设置了UITableView对象的DataSource,尤其是Delegate,就可以Overwrit...
viewWillAppear: Called when the view is about to made visible. Default does nothing视图即将...
iOS的系统架构由上到下依次为: 可触摸层(Cocoa Touch layer) 媒体层(Media layer) 核心服务层(Cocoa Services layer) 核...
JPFPSStatus是一个检测查看屏幕帧数的轮子,通过CADisplayLink 加入RunLoop模式. 可以用来绘制ui动画效果,也可以用来获取网络状态. 其核心代码:...
xcode 运行真机报错,拔掉数据线重新链接就可以了; 如果还不行,那就打开 设置->通用->还原->还原位置和隐私,重新链接数据线; 还不行,那就重启手机和电脑.
button.layer.masksToBounds = YES; //允许绘制 button.layer.cornerRadius = 4;//边框弧度 button.la...
HTTP--Hyper Text Transfer Protocol,超文本传输协议,是一种建立在TCP上的无状态连接,整个基本的工作流程是客户端发送一个HTTP请求,说明客...
UIButton扩展一个方法: spacing 图片和文字的间隔 - (void)verticalImageAndTitle:(CGFloat)spacing { CGS...