我是编程新手,我正在努力学习Objective-C 我现在正在玩选项,看看Objective-C有什么可能。
我已经有标签,移动部件和按钮了 我刚刚发现了如何将UITextField放入我的屏幕,但当我关闭并打开应用程序时,文本就消失了。
如何将文字保存在我的短信中?
这是我的代码:
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 200, 300, 40)];
textField.borderStyle = UITextBorderStyleRoundedRect;
textField.font = [UIFont systemFontOfSize:15];
textField.placeholder = @"enter text";
textField.autocorrectionType = UITextAutocorrectionTypeNo;
textField.keyboardType = UIKeyboardTypeDefault;
textField.returnKeyType = UIReturnKeyDone;
textField.clearButtonMode = UITextFieldViewModeWhileEditing;
textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
[self.view addSubview:textField];
如何在我的视图中获得令人兴奋的图片(例如PNG)?