最近要搭建新的项目 先把通用的宏定义给整理一下
//
// APPUtil.h
// Macro
//
// Created by WY on 2018/6/15.
// Copyright © 2018年 WY. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface APPUtil : NSObject
/**
输出时年月日分秒毫秒
*/
+ (NSString *_Nullable)lr_stringDate;
@end
//
// APPUtil.m
// Macro
//
// Created by WY on 2018/6/15.
// Copyright © 2018年 WY. All rights reserved.
//
#import "APPUtil.h"
@implementation APPUtil
///输出时年月日分秒毫秒
+ (NSString *)lr_stringDate
{
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"YYYY-MM-dd hh:mm:ss:SSS"];
NSString *dateString = [dateFormatter stringFromDate:[NSDate date]];
return dateString;
}
@end