1234567891011121314151617181920212223 |
- //
- // RQMomentHelper.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/23.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface RQMomentHelper : NSObject
- /// 微信用到的 dateFormatter
- + (NSDateFormatter *)dateFormatter;
- /// 时间转化
- + (NSString *)createdAtTimeWithSourceDate:(NSDate *)sourceDate;
- /// 电话号码正则
- + (NSRegularExpression *)regexPhoneNumber;
- /// 链接正则
- + (NSRegularExpression *)regexLinkUrl;
- /// 关闭 微信朋友圈的一些弹出事件 (评论和点赞view , 键盘)背景高亮view....
- + (void)hideAllPopViewWithAnimated:(BOOL)animated;
- @end
|