摘要:
一、loadView1.什么时候被调用?每次访问UIViewController的view(比如controller.view、self.view)而且view为nil,loadView方法就会被调用。2.有什么作用?loadView方法是用来负责创建UIViewController的view3.默... 阅读全文
摘要:
http://www.cnblogs.com/mjios/archive/2013/02/26/2934280.html有些人可能马上想到一个解决方案,你叫美工把图片做大一点不就好了么,怎么拉伸都没事。没错,这是一种解决方案,不过不建议采取。原因很简单:1.图片大,导致安装包也大,加载到内存中也大;... 阅读全文
摘要:
AFURLConnectionOperation:继承自 NSOperation 实现了NSURLConnection 的代理方法.AFHTTPRequestOperation: 继承自 AFURLConnectionOperation的子类,当request请求使用的协议为HTTP和HTTPS时使... 阅读全文
摘要:
UIAlertView/UIActionSheetUIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@“添加场景模式” message:@“请输入场景名称” delegate:self cancelButtonTitle:@“取... 阅读全文
摘要:
确定UITableViewCell AccessoryCheckmark唯一性a)点击背景会变蓝色-(UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(N... 阅读全文
摘要:
segue跳转#pragma mark - Navigation// In a storyboard-based application, you will often want to do a little preparation before navigation-(void)prepareFo... 阅读全文
摘要:
虽然App Store能够提醒用户软件更新,但很多用户不会主动去更新一大堆的软件。如果在软件开启时提醒用户更新 或者 更多中设置“检查更新”项,效果会好很多。 通常的做法是在自己的服务器上记录最新版本号,从iOS客户端请求,与本地版本号比较,不同则提示更新。这种做法简单,缺点是需要单独的服务器... 阅读全文
摘要:
NSURL* url = [[NSURL alloc] initWithString:@“http://blog.csdn.net/iukey”];[[ UIApplication sharedApplication]openURL:url];NSURL* url = [[NSURL alloc] ... 阅读全文
摘要:
xml创建+解析GDataXmlNode导入注意事项1、-fno-objc-arc2、libxml2.dylib3、header search path 改为/usr/include/libxml2 阅读全文
摘要:
lable圆角问题lable.layer.cornerRadius = 5.0;lable.layer.masksToBounds =YES; 阅读全文
摘要:
1、xcode6中iphone5模拟器中运行textfield不弹出键盘Hardware->Keyboard->Toggle Software Keyboard手动激活键盘2、点击return收键盘(1)按住Ctrl,选中TextField,拖拽至ViewController使二者连接。(2)在.h... 阅读全文