// 2.利用整型自動去掉開頭的0, 不要循環和判斷prefix以及截取字符串
- (NSString *)pp_formatDateWithArrYMDToMD;
{
NSInteger month = [self[1] integerValue];
NSInteger day = [self[2] integerValue];
return [NSString stringWithFormat:@"%lu月%lu日", (long)month, (long)day];
}
---- 寫為集合的類目,將年月日拆分到一個集體后調用該方法