摘要: UILabel *label = [[UILabel alloc]init]; label.numberOfLines = 0; [self.view addSubview:label]; label.backgroundColor = [UIColor grayColor]; label.textColor = [UIColor redColor]; ... 阅读全文
posted @ 2018-08-12 21:43 神来钥匙-陈诗友 阅读(391) 评论(0) 推荐(0)
摘要: // 头文件导入 #import //在iPhone5s的时候,苹果推出了指纹解锁。但是在ios8.0的时候苹果才推出相关的接口。所以, /** * 第一步,验证版本 */ if ([UIDevice currentDevice].systemVersion.floatValue < 8.0) { return nil; ... 阅读全文
posted @ 2018-08-12 21:23 神来钥匙-陈诗友 阅读(289) 评论(0) 推荐(0)