标签:
格式
特征
示例
//声明没有返回值的方法
- (void)method;
//声明有返回值的方法
- (int)method;
//声明有返回值有参数的方法
- (int)method: (int)var;
//声明有返回值有多个参数的方法
- (int)method: (int)var1 andVar2: (int)var2;
+ 必须卸载以@implementation开头,@end之间
+ 在声明的后面加上{}即表示实现
+ 讲需要实现的代码写在{}中
标签:
原文地址:http://www.cnblogs.com/iOSxgj/p/5141793.html