实现功能: 自定义视频流,实时预览。运行环境: 1. XCODE 5.1.1 2.
真机(IPHONE5 , IOS6.1.4)#import #import //导入 - "视频流"@interface MCViewController :
UIViewController@p...
分类:
其他好文 时间:
2014-06-16 06:01:42
阅读次数:
254
这篇文章是专门用来记录开发中一些常见的BUG以及常用的零碎知识点,我会隔一段时间更新内容1.重复调用2次loadView和viewDidLoad最好不要在UIViewController的loadView方法中改变状态栏的可视性(比如状态栏由显示变为隐藏、或者由隐藏变为显示),因为会导致重复调用2次...
分类:
其他好文 时间:
2014-06-14 22:16:05
阅读次数:
392
- (UIViewController*)viewController { for (UIView*
next = [self superview]; next; next =next.superview) { UIResponder*nextResponder
= [next nextRe...
分类:
其他好文 时间:
2014-06-11 09:34:16
阅读次数:
227
1.
3大类型:触摸事件,加速计事件,远程控制事件2.只有继承了UIResponder的对象才能接收并处理事件3.UIApplication
UIViewController
UIView都继承UIResponder4.UIResponder的内部方法触摸事件:以touches开头5.当用户用手指触...
分类:
移动开发 时间:
2014-06-10 12:49:58
阅读次数:
247
除了push之外,还有另外一种控制器的切换方式,那就是Modal
Modal的默认效果:新控制器从屏幕的最底部往上钻,直到盖住之前的控制器为止以Modal的形式展示控制器-
(void)presentViewController:(UIViewController *)viewControll...
分类:
移动开发 时间:
2014-06-10 12:08:17
阅读次数:
264
1、案例视图,如下图2、代码TextKit01ViewController.h#import
@interface TextKit01ViewController : UIViewController@property
(nonatomic,strong) IBOutlet UITextView *...
分类:
移动开发 时间:
2014-06-08 19:03:04
阅读次数:
382
1、案例如图2、代码TextKit02ViewController.h#import
@interface TextKit02ViewController : UIViewController@property
(nonatomic,strong) IBOutlet UITextView *text...
分类:
移动开发 时间:
2014-06-08 18:53:35
阅读次数:
558
@前面的文章讲到,在Block中用到self(self特指UIViewController),需要用__block或者__weak修饰(MRC与ARC的区别),因为Block调用会对其里面的对象引用计数加1,如果你不确定你调用的Block是否会产生循环引用的话,最好用__block或__weak修饰.当然,如果你确定并不会产生循环引用的情况,那你可以放心的self. self. (~O(∩_∩)...
分类:
其他好文 时间:
2014-06-08 16:34:27
阅读次数:
215
IOS程序中,一个应用默认只有一个UIWindow。UIWindow是比较特殊的UIView控件,也是程序启动后创建的第一个UIView对象,为了透彻的了解UIWindow和UIViewController之间的关系,以及UIViewController的创建,从新建一个EmptyApplicati...
分类:
移动开发 时间:
2014-06-07 17:02:54
阅读次数:
222
1、案例介绍:iPad上使用多种风格的ModalView,如图01,02,03,04,05图01图02图03图04图052、代码ViewController.h#import
@interface ViewController : UIViewController- (IBAction)onclic...
分类:
移动开发 时间:
2014-06-07 16:59:12
阅读次数:
346