摘要: @implementation ForgetViewController { __strong NSTimer * timer; NSInteger secondes; } - (void)dealloc{ if(timer != nil){ [timer invalidate]; ... 阅读全文
posted @ 2016-08-31 13:23 _水畔竹汐 阅读(161) 评论(0) 推荐(0)
摘要: +(NSMutableURLRequest *)putRequestWithUrl:(NSString *)urlString HTTPMethod:(NSString *)httpMethod HTTPBody:(NSString *)httpBody; +(NSMutableURLRequest *)putRequestWithUrl:(NSString *)urlString HT... 阅读全文
posted @ 2016-08-31 13:19 _水畔竹汐 阅读(236) 评论(0) 推荐(0)
摘要: - (void)dealloc { //释放定时器 [_balanceLabelAnimationTimer invalidate]; _balanceLabelAnimationTimer = nil; } 阅读全文
posted @ 2016-08-31 13:14 _水畔竹汐 阅读(222) 评论(0) 推荐(0)
摘要: 要求: 输入的金额不能超过六位, 小数点后面只能输入两位小数 如果 textFIled 中第一位输入的是0 ,后面必须输入小数点,否则禁止输入 用到 textfiled代理方法 #pragma mark textFiledDelegate - (BOOL)textField:(UITextField 阅读全文
posted @ 2016-08-31 13:12 _水畔竹汐 阅读(187) 评论(0) 推荐(0)