我想将ABRecord转换为字符串
textfield.text=(NSString *)(ABRecordGetRecordID(ref));
我该怎么做呢。
发布于 2011-12-01 16:00:44
ABRecordID只是一种类型定义:
NSInteger recordID = ABRecordGetRecordID(ref);
textfield.text = [NSString stringWithFormat:@"%d", recordID];https://stackoverflow.com/questions/8338075
复制相似问题