IT story

NSDate를 NSString으로 변환

hot-time 2020. 4. 4. 11:03
반응형

NSDate를 NSString으로 변환


어떻게 변환 할 NSDateNSString그렇게 만 해 @ "YYYY" 문자열 출력 형식입니다?


어때요?

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy"];

//Optionally for time zone conversions
[formatter setTimeZone:[NSTimeZone timeZoneWithName:@"..."]];

NSString *stringFromDate = [formatter stringFromDate:myNSDateInstance];

//unless ARC is active
[formatter release];

스위프트 4.2 :

func stringFromDate(_ date: Date) -> String {
    let formatter = DateFormatter()
    formatter.dateFormat = "dd MMM yyyy HH:mm" //yyyy
    return formatter.string(from: date)
}

우리 모두가 이것을 놓친 방법을 모르겠습니다 : localizedStringFromDate : dateStyle : timeStyle :

NSString *dateString = [NSDateFormatter localizedStringFromDate:[NSDate date] 
                                                      dateStyle:NSDateFormatterShortStyle 
                                                      timeStyle:NSDateFormatterFullStyle];
NSLog(@"%@",dateString);

'13 / 06 / 12 00:22:39 GMT + 03 : 00 '출력


년, 월, 일을 포함한 일반적인 포맷터에 시간을 제공하여 더 많은 가치를 창출하기를 바랍니다. 이 포맷터를 1 년 이상 사용할 수 있습니다

[dateFormat setDateFormat: @"yyyy-MM-dd HH:mm:ss zzz"]; 

이것이 더 많은 사람들을 돕는 희망

건배


NSDate에는 많은 도우미가 있습니다.

https://github.com/billymeltdown/nsdate-helper/

아래의 추가 정보 추출 :

  NSString *displayString = [NSDate stringForDisplayFromDate:date];

다음과 같은 종류의 출력이 생성됩니다.

‘3:42 AM’ – if the date is after midnight today
‘Tuesday’ – if the date is within the last seven days
‘Mar 1’ – if the date is within the current calendar year
‘Mar 1, 2008’ – else ;-)

스위프트에서 :

var formatter = NSDateFormatter()
formatter.dateFormat = "yyyy"
var dateString = formatter.stringFromDate(YourNSDateInstanceHERE)

  NSDateFormatter *dateformate=[[NSDateFormatter alloc]init];
  [dateformate setDateFormat:@"yyyy"]; // Date formater
  NSString *date = [dateformate stringFromDate:[NSDate date]]; // Convert date to string
  NSLog(@"date :%@",date);

NSDate -descriptionWithCalendarFormat:timeZone:locale:사용할 수 없는 경우 (iPhone / Cocoa Touch에 포함되어 있다고 생각하지 않습니다) strftime과 monkey를 일부 C 스타일 문자열과 함께 사용해야합니다. NSDate사용하여 UNIX 타임 스탬프를 얻을 수 있습니다 NSDate -timeIntervalSince1970.


+(NSString*)date2str:(NSDate*)myNSDateInstance onlyDate:(BOOL)onlyDate{
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    if (onlyDate) {
        [formatter setDateFormat:@"yyyy-MM-dd"];
    }else{
        [formatter setDateFormat: @"yyyy-MM-dd HH:mm:ss"];
    }

    //Optionally for time zone conversions
    //   [formatter setTimeZone:[NSTimeZone timeZoneWithName:@"..."]];

    NSString *stringFromDate = [formatter stringFromDate:myNSDateInstance];
    return stringFromDate;
}

+(NSDate*)str2date:(NSString*)dateStr{
    if ([dateStr isKindOfClass:[NSDate class]]) {
        return (NSDate*)dateStr;
    }

    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"yyyy-MM-dd"];
    NSDate *date = [dateFormat dateFromString:dateStr];
    return date;
}

이 확장명을 추가하십시오.

extension NSDate {
    var stringValue: String {
        let formatter = NSDateFormatter()
        formatter.dateFormat = "yourDateFormat"
        return formatter.stringFromDate(self)
    }
}

Mac OS X를 사용하는 경우 다음과 같이 작성할 수 있습니다.

NSString* s = [[NSDate date] descriptionWithCalendarFormat:@"%Y_%m_%d_%H_%M_%S" timeZone:nil locale:nil];

그러나 iOS에서는 사용할 수 없습니다.


NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [calendar components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:myNSDateInstance];
NSInteger year = [components year];
// NSInteger month = [components month];
NSString *yearStr = [NSString stringWithFormat:@"%ld", year];

예를 들어 날짜 필수 날짜 형식을 형식화하기위한 고유 한 유틸리티를 정의하십시오.

NSString * stringFromDate(NSDate *date)  
 {   NSDateFormatter *formatter
    [[NSDateFormatter alloc] init];  
    [formatter setDateFormat:@"MM ∕ dd ∕ yyyy, hh꞉mm a"];    
    return [formatter stringFromDate:date]; 
}

빠른 형식입니다 :

func dateFormatterWithCalendar(calndarIdentifier: Calendar.Identifier, dateFormat: String) -> DateFormatter {

    let formatter = DateFormatter()
    formatter.calendar = Calendar(identifier: calndarIdentifier)
    formatter.dateFormat = dateFormat

    return formatter
}


//Usage
let date = Date()
let fotmatter = dateFormatterWithCalendar(calndarIdentifier: .gregorian, dateFormat: "yyyy")
let dateString = fotmatter.string(from: date)
print(dateString) //2018

신속한 4 답변

static let dateformat: String = "yyyy-MM-dd'T'HH:mm:ss"
public static func stringTodate(strDate : String) -> Date
{

    let dateFormatter = DateFormatter()
    dateFormatter.dateFormat = dateformat
    let date = dateFormatter.date(from: strDate)
    return date!
}
public static func dateToString(inputdate : Date) -> String
{

    let dateFormatter = DateFormatter()
    dateFormatter.dateFormat = dateformat
    return formatter.string(from: inputdate)

}

참고 URL : https://stackoverflow.com/questions/576265/convert-nsdate-to-nsstring

반응형