08 2017 档案

摘要://设置毛玻璃效果 +(void)blurEffrct:(UIView *)view{ UIBlurEffect* effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; UIVisualEffectView* effectView = [[UIVisualEffectView alloc] initWith... 阅读全文
posted @ 2017-08-26 17:14 LiziBlog 阅读(355) 评论(0) 推荐(0)
摘要:调用 阅读全文
posted @ 2017-08-07 18:10 LiziBlog 阅读(459) 评论(0) 推荐(0)
摘要:Healp 类方法里 调用 实例方法前边不带class 类方法带 阅读全文
posted @ 2017-08-07 18:04 LiziBlog 阅读(204) 评论(0) 推荐(0)
摘要:方法类 引用 阅读全文
posted @ 2017-08-04 14:37 LiziBlog 阅读(2586) 评论(0) 推荐(0)
摘要:oc Swift 阅读全文
posted @ 2017-08-01 15:27 LiziBlog 阅读(537) 评论(0) 推荐(0)
摘要:let rootV = ViewController() let rootNav = UINavigationController.init(rootViewController: rootV) self.window?.rootViewController=rootNav 阅读全文
posted @ 2017-08-01 15:21 LiziBlog 阅读(1747) 评论(0) 推荐(0)
摘要:? 解释:这个对象还没赋值 可能为空 备注:如果在后面的某个函数中复制了就不会为空了,所以要给个? ! 解释:这个对象已经初始化了 备注:在声明后立即初始化 阅读全文
posted @ 2017-08-01 15:19 LiziBlog 阅读(392) 评论(0) 推荐(0)