摘要:
通常在开发中我们需要长久的保存某些值比如用户的账号密码等,对于隐私度很高的数据来说保证数据的安全性是尤为重要的。ios中的keyChain是一种很好的选择。 首先去开发者网站(https://developer.apple.com/library/ios/navigation/)下载一个叫Gener 阅读全文
摘要:
FirstColor 跟 CornerRadious 都是新增的显示属性具体实现方法如下: @property(nonatomic,weak)IBInspectable UIColor *firstColor; /...................................../ - (v 阅读全文
摘要:
首先导入LocalAuthentication框架 然后导入头文件 #import <LocalAuthentication/LAPublicDefines.h> 阅读全文
摘要:
今天在做项目的时候 发现调用tableview 的 reloaddata 方法的时候出现崩溃. - 具体操作是执行某个方法后将数据数组中的某条数据删除(数组中存数组)发现调用刷新方法后 程序崩溃,查看日志发现是数组越界 调试发现 numofsections 这个方法要慢于 cellforrow... 阅读全文
摘要:
利用UICollectionView实现瀑布流通过自定义布局来实现。 - 自定义类继承UICollectionViewLayout; 必须重写的方法有: //决定每个item的位置; - (nullable UICollectionViewLayoutAttributes *)layoutAttri 阅读全文
摘要:
当动态改变(比如一秒改变一次)按钮的Title的时候发现按钮每次都要闪烁一下;解决方法如下: self.settleButton.titleLabel.text = title; [self.settleButton setTitle:title forState:UIControlStateNor 阅读全文
摘要:
1.导入GDataXMLNode.h 和 GDataXMLNode.m文件 2.导入libxml2库文件 3.工程target下Bulid Settings 搜索search 找到Hearder Search Paths 添加路径/usr/include/libxml2 4.GDataXML不支持A 阅读全文
摘要:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{ return [self validNum:st 阅读全文
摘要:
- (UIViewController*)getViewController{ for (UIView* next = [self superview]; next; next = next.superview) { UIResponder* nextResponder = [next nextRe 阅读全文
摘要:
两种改变status bar状态的方法 一 :(全局的) 直接在当前控制器中(一般是在navigationcontroller) //- (UIStatusBarStyle)preferredStatusBarStyle{ // return UIStatusBarStyleLightContent 阅读全文