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