1
我知道這可能是一個簡單的問題,但我需要你的幫助。 我正在嘗試製作一個應用程序來解碼一條航空消息。我需要從文本字段中獲取文本,並將標籤設置爲將其解碼爲純語言。 也就是說如果用戶在文本字段中插入12310520標籤必須是12月31日在0520是UIText字段和標籤
來回感謝您的幫助
我試過,但我得到空:
NSString *data = [NSString stringWithFormat:@"%@", [date text]];// this come from the textfield---
NSDateFormatter *dateFormatter =[[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"MM-dd'at'HH:mm"];
NSDate *dateFromString=[[NSDate alloc]init];
dateFromString = [dateFormatter dateFromString:data];
NSLog(@"%@", dateFromString);