摘要: 一、点语法 (一)认识点语法 声明一个Person类: 1 #import 2 3 @interface Person : NSObject 4 { 5 int _age; 6 NSString *_name; 7 } 8 9 - (void)setAge:(int)a... 阅读全文
posted @ 2015-01-21 15:41 Janlor 阅读(231) 评论(0) 推荐(0) 编辑