摘要: @implementation ForgetViewController { __strong NSTimer * timer; NSInteger secondes; } - (void)dealloc{ if(timer != nil){ [timer invalidate]; ... 阅读全文
posted @ 2016-08-31 13:23 _水畔竹汐 阅读(153) 评论(0) 推荐(0) 编辑
摘要: +(NSMutableURLRequest *)putRequestWithUrl:(NSString *)urlString HTTPMethod:(NSString *)httpMethod HTTPBody:(NSString *)httpBody; +(NSMutableURLRequest *)putRequestWithUrl:(NSString *)urlString HT... 阅读全文
posted @ 2016-08-31 13:19 _水畔竹汐 阅读(227) 评论(0) 推荐(0) 编辑
摘要: - (void)dealloc { //释放定时器 [_balanceLabelAnimationTimer invalidate]; _balanceLabelAnimationTimer = nil; } 阅读全文
posted @ 2016-08-31 13:14 _水畔竹汐 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 要求: 输入的金额不能超过六位, 小数点后面只能输入两位小数 如果 textFIled 中第一位输入的是0 ,后面必须输入小数点,否则禁止输入 用到 textfiled代理方法 #pragma mark textFiledDelegate - (BOOL)textField:(UITextField 阅读全文
posted @ 2016-08-31 13:12 _水畔竹汐 阅读(178) 评论(0) 推荐(0) 编辑
摘要: bundle 是一个目录,其中包含了程序会使用到的资源.这些资源包含了如图像,声音,编译好的代码,nib文件(用户也会把bundle称为plug-in).对应bundle, cocoa提供了类NSBundle. bundle 文件的创建,只需要在本地创建一个文件夹,给文件夹添加后缀@".bundle 阅读全文
posted @ 2016-08-23 10:23 _水畔竹汐 阅读(4704) 评论(0) 推荐(0) 编辑
摘要: const /** const :常量 const 与宏的区别 1.编译时刻 : const: 编译时刻 , 宏:预编译 2.编译检查: const 会检查错误 , 宏: 不会检查错误 3.宏的好处: 可以定义代码 4.宏的坏处: 编译时间过长, 因此常用的字符串通常使用 const修饰 注意:很多 阅读全文
posted @ 2016-08-19 14:09 _水畔竹汐 阅读(269) 评论(0) 推荐(0) 编辑
摘要: -(void)tapGestureRecognizer:(UITapGestureRecognizer *)sender { UIActionSheet *action = [[UIActionSheet alloc] initWithTitle:@"选择照片" delegate: self can 阅读全文
posted @ 2016-08-18 17:04 _水畔竹汐 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 银行卡号类型匹配是判断银行卡前六位数是哪个银行的,这里从网上找了一些,挺全的,不过最好存一个 plist 保存起来,用的时候方便,这里就不存了 阅读全文
posted @ 2016-08-18 16:18 _水畔竹汐 阅读(5351) 评论(0) 推荐(0) 编辑
摘要: 项目中用到了校验银行卡,就拿来贴上来了 + (BOOL)checkCardNo:(NSString*)cardNo;//判断银行卡 + (BOOL)checkCardNo:(NSString*)cardNo{ int oddsum = 0; //奇数求和 int evensum = 0; //偶数求 阅读全文
posted @ 2016-08-18 14:23 _水畔竹汐 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 这里列举了四种线程延时加载的方法, 1.performSelector方法 此方法必须在主线程中执行,并不是阻塞当前的线程 2.定时器:NSTimer,也必须在主线程中加载,是一种非阻塞的执行方式 3. sleep方式此方式在主线程和子线程中均可执行。 是一种阻塞的执行方式,建方放到子线程中,以免卡 阅读全文
posted @ 2016-08-17 13:19 _水畔竹汐 阅读(740) 评论(0) 推荐(0) 编辑