1. 调用系统自带的强制屏幕旋转不过还得在AppDelegate中重写下面方法 在Viewcontroller中添加下面方法 - (void)hideNavigationAndTabBar:(BOOL)state { [self.navigationController.navigationBar ...
分类:
其他好文 时间:
2016-06-23 12:24:51
阅读次数:
215
// // ViewController.m // JSON序列化2 // // Created by 潘荟 on 16/6/20. // Copyright © 2016年 BAT. All rights reserved. // #import "ViewController.h" #impor ...
分类:
Web程序 时间:
2016-06-20 20:45:36
阅读次数:
176
ViewController解析 ViewController解析 UIViewController是iOS顶层视图的载体及控制器,用户与程序界面的交互都是由UIViewController来控制的,UIViewController管理UIView的生命周期及资源的加载与释放。 UIView与UIW ...
分类:
其他好文 时间:
2016-06-20 06:38:38
阅读次数:
385
1,MVVM个人理解 MVVM 比起MVC多了一个ViewModel,他的出现就是为了给ViewController瘦身。MVC已经把视图和数据模型分开了,唯一进一步解耦合,我们不把网络请求放在View中或者ViewController中,而是单独提出来一个ViewModel。理解比较浅,先写个博客 ...
分类:
移动开发 时间:
2016-06-19 16:53:02
阅读次数:
222
// // ViewController.m // B01-socket // // Created by Lihongqiang on 16/6/27. // Copyright (c) 2016年 itcast. All rights reserved. // #import "ViewCont ...
分类:
其他好文 时间:
2016-06-18 14:05:06
阅读次数:
158
今天突然想到微信朋友圈发照片,涉及个人隐私的地理位置是否外泄。因为iphone拍照的照片都会带有地理位置等信息,我们先来实现怎么读取里面的安全信息,然后再来分析 [objc] view plain copy #import "ViewController.h" #import <ImageIO/Im ...
分类:
移动开发 时间:
2016-06-17 08:28:55
阅读次数:
263
当xcode提示以下错误时,很可能的原因是由于ViewController中的View在Controller中连接了outlet,然后又删除了Controller中对应的属性,导致xcode找不到这个属性而报错 [UILabel copyWithZone:]: unrecognized select ...
分类:
移动开发 时间:
2016-06-16 01:30:58
阅读次数:
173
1、要根据展示的文字计算cell的高度, 再此给NSString写的延展的方法, 以此获取展示文字的高度 2、在自定义的cell中 声明属性和定义方法 注:在cell上初始化子控件,最好用代码写, 不知为何用storyBoard初始化的不能重置其frame 3、在ViewController 中 ...
分类:
其他好文 时间:
2016-06-15 18:37:08
阅读次数:
203
今天记录一下AVAudioPlayer,这个播放器类苹果提供了一些代理方法,主要用来播放本地音频。 其实也可以用来播放网络音频,只不过是将整个网络文件下载下来而已,在实际开发中会比较耗费流量不做推荐。 下面是相关代码: #import "ViewController.h" //引入框架 #impor ...
分类:
移动开发 时间:
2016-06-15 15:34:22
阅读次数:
415
UITableViewController在实际项目中很重要 程序并不知道有多少数据要放入,所以要通过一个代理来实现数据的传送 #import "ViewController.h" @interface ViewController ()<UITableViewDelegate,UITableVie ...
分类:
其他好文 时间:
2016-06-15 12:31:39
阅读次数:
124