摘要:
/* 不可变字典 NSDiction */ // 创建字典对象 // 参数1 : value // 参数2 : key 值// NSDictionary *dic1 = [NSDictionary dictionaryWithObject:@"张三" forKey:@"name"];... 阅读全文
摘要:
int main(int argc, const char * argv[]) {//// // SDK // Software Development Kit // 软件开发 // API // Application Programming Interface // 应用程序接口... 阅读全文
该文被密码保护。 阅读全文
摘要:
@implementation AddressBook// 系统预设好的init方法- (instancetype)init{ self = [super init]; if (self) { // 容器类在使用之前 必须先进行初始化 self.contactDic = [NSMut... 阅读全文