我使用ARC的Xcode和寫的簡便方法是這樣的:在ARC模式下返回UITextField對象是否有這樣的錯誤?
+(UITextField *) addTextField:(NSString *)text x:(int)_x y:(int)_y width:(int)_width height:(int)_height {
UITextField *v_txt = [[UITextField alloc] init];
v_txt.frame= CGRectMake(_x, _y, _width, _height);
v_txt.borderStyle = UITextBorderStyleRoundedRect;
return v_txt;
}
許多視圖控制器調用這個類方法返回的汽車在我的應用程序發佈UITextField
對象。這裏有沒有內存泄漏?提前致謝。
還沒有投票:) –