在IOS中方法名特別長妈嘹,但是特別易讀
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
}
自定義方法名
- 一個參數(shù)
-(void)setImage:(NSString *)imageName;
- 兩個參數(shù)
-(void)setImage:(NSString *)imageName scale:(int)scl;
方法名:setImage
, 類型:NSString
, 型參:imageName
"void"
代表沒有返回值
- 與xib連接的方法
-(IBAction)clickBtn:(id)sender{ //點擊事件的方法 }
- 有返回值的方法
-(void)setImage{self image = [UIImage imageNamed:@""];}
必須return
-
方法前
+,-
號的區(qū)別
+
類方法 [類名 方法名]調(diào)用
UIView *topView.("+"方法) = UIView.new;
-
對象方法 [實例對象 方法名]調(diào)用
UIView.`("-"方法)` = UIView.new;