摘要:
什么是Notification?什么时候用delegate,什么时候用Notification? 1.什么是Notification? 答:观察者模式,controller向defaultNotificationCenter添加自己的 notification,其他类注册这个notification 阅读全文
摘要:
Xcode 升级至xcode8后 出现的不少的Bug 在Xcode8上一直输出出现AQDefaultDevice(173):Skipping input stram 0 0 0x0 解决方法: 1 选择product-->Scheme-->Edit Scheme 2选择Arguments 3 在En 阅读全文
摘要:
直播 http://wzfree.10043.doftp.com/tvtest/50vtv.php/live/id/78.m3u8 view http://blog.csdn.net/zhengang007/article/details/46873019 MVVM http://yulingtia 阅读全文
摘要:
xcode6.0升级到xcode6.1后,程序编译报错,错误如下:这是个很常 见的错误,很多项目在更换xcode版本后,都会出现类似的问题。 Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_QQApiInterface", refe 阅读全文
摘要:
//frame 是你所需要的区域大小 +(UIImage *)screenshotsImageFram:(CGRect)frame{ UIWindow *screenWindow = [[UIApplication sharedApplication] keyWindow]; UIGraphicsB 阅读全文
摘要:
方法一 UIView *view = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; view.backgroundColor = [UIColor redColor]; view.layer.cornerRadius = 阅读全文
摘要:
Objective-C,通常写作ObjC或OC和较少用的Objective C或Obj-C,是扩充C的面向对象编程语言。它主要使用于Mac OS X和GNUstep这两个使用OpenStep标准的系统,而在NeXTSTEP和OpenStep中它更是基本语言。 GCC与Clang含Objective- 阅读全文
摘要:
NSMutableArray *dicToArray = [NSMutableArray array]; NSMutableDictionary *arrayToDic = [NSMutableDictionary dictionary]; NSDictionary *dic = @{@"1":@" 阅读全文
摘要:
//设置毛玻璃效果 +(void)blurEffrct:(UIView *)view{ UIBlurEffect* effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; UIVisualEffectView* effectView = [[UIVisualEffectView alloc] initWith... 阅读全文