在 IOS 中方法名都特别长,但是易读
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:( NSIndexPath *)indexPath
接下来我们来自定义方法名
//方法名setlmage 类型(NSSing *) 形参为imageName
-(void)setImage:(NSString *)imageName;
//方法名setlmage,scl
-(void)setImage:(NSString *)imageName scale:(int)scl;
-(void)setImage{
self.image=(UIImage imageName:"");
-(IBAction)clickBtn:(id)sender{
// 点击事件的方法
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
- 方法前 - + 号的区别
+代表类方法
-号代表对象
方法前-,+号的区别
+:类方法 [类名 方法名]调用 UIView.new;
-:对象放方法 [实例对象 方法名]调用 UIView *topView
星后面的就为对象。