本帖最后由 张传宾 于 2015-1-17 20:47 编辑
“在微博里发:“今天天气真好!”这么无聊的微博,肯定是个2B,还有人转发,说:”今天天气真的很好!“,转发这么无聊的微博,这人肯定是个傻B” --------摘自【李老师视频】- OC - 03内存管理 - 15 - 模型设计练习
:L:L:L@李老师-MJ
int main() { // 新建2个用户 User *u = [[User alloc] init]; u.name = @"2B";
User *u2 = [[User alloc] init]; u2.name = @"傻B";
// 新建2条微博 Status *s = [[Status alloc] init]; s.text = @"今天天气真好!"; s.user = u;
Status *s2 = [[Status alloc] init]; s2.text = @"今天天气真的很好!"; s2.retweetStatus = s; s2.user = u2;
[u2 release]; [u release]; [s2 release]; [s release]; return 0; }
|