我在 xcode 中使用 ARC 并编写这样的便捷方法:
+(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
我的应用程序中自动释放的对象。这里有一些内存泄漏吗?提前致谢。