RQMomentHelper.h 639 B

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