博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
时间格式化,时间比较,电话号码格式正确判断
阅读量:6419 次
发布时间:2019-06-23

本文共 1183 字,大约阅读时间需要 3 分钟。

hot3.png

//现在时间time    要比较的时间time1  NSTimeInterval = [[NSDate date] timeIntervalSince1970];    NSTimeInterval time1 = [selectedDate timeIntervalSince1970];    if (time1
//时间格式化-(NSString *)getDateAccordingTime:(NSString *)aTime formatStyle:(NSString *)formate{        NSDate *nowDate = [NSDate dateWithTimeIntervalSince1970:[aTime intValue]];    NSDateFormatter* formatter = [[NSDateFormatter alloc] init];       [formatter setDateFormat:formate];    return[formatter stringFromDate:nowDate];}  _timeLabel.text = [self getDateAccordingTime:_model.time formatStyle:@"YYYY-MM-dd HH:mm:ss"];
#pragma mark-正则表达式验证手机号-(BOOL)isValiadateMobile:(NSString *)mobile{        NSString *phoneRegex=@"^((13[0-9])|(15[^4,\\D])|(18[0,0-9]))\\d{8}$";    NSPredicate *phoneTest=[NSPredicate predicateWithFormat:@"SELF MATCHES %@",phoneRegex];    return [phoneTest evaluateWithObject:mobile];}    if (![self isValiadateMobile:_telephoneTextField.text]) {                UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"请输入有效的联系人电话" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定", nil];        [alert show];        return;    }

转载于:https://my.oschina.net/wenchengxu123/blog/491931

你可能感兴趣的文章
电力线通信载波模块
查看>>
linux vim详解
查看>>
Java23种设计模式案例:策略模式(strategy)
查看>>
XML解析之DOM4J
查看>>
图解微服务架构演进
查看>>
SQL PATINDEX 详解
查看>>
一些常用的网络命令
查看>>
CSP -- 运营商内容劫持(广告)的终结者
查看>>
DIV+CSS命名规范有助于SEO
查看>>
js生成二维码
查看>>
C指针练习
查看>>
web项目buildPath与lib的区别
查看>>
php对redis的set(集合)操作
查看>>
我的友情链接
查看>>
ifconfig:command not found的解决方法
查看>>
js使用正则表达式判断手机和固话格式
查看>>
计算机是怎么存储数字的
查看>>
Codeforces Round #369 (Div. 2) A. Bus to Udayland 水题
查看>>
adb上使用cp/mv命令的替代方法(failed on '***' - Cross-device link解决方法)
查看>>
C++标准库简介、与STL的关系。
查看>>