我是iOS开发的新手。
我尝试构建一个类似于我的mokeup的UI:
我的尝试:
通常,没有表示UI的XML或其他文本文件?只需在Xcode中拖放编辑器?
当我设置imageUI元素时,我可以在Xcode编辑器中设置图像src,还是仅通过代码设置?
如何设置UITextField
bg颜色?
我试过这个:
@IBOutlet weak var inline_icon: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
inline_icon.image = UIImage(named: "inline-logo.jpg");
location_title.backgroundColor = UIColor(red: 0xdb, green: 44, blue: 36, alpha: 0)
}
但我的代码停在此处,好像我在那里放了一个断点:
答案 0 :(得分:1)
如果您右键单击Main.storyboard并选择,则基于XML 打开为>源代码。
要更改UITextField
的属性,请参阅下面的示例
txtField.delegate = self
txtField.backgroundColor = UIColor.greenColor()
txtField.placeholder = "Enter text here"
txtField.font = UIFont.systemFontOfSize(15)
txtField.borderStyle = UITextBorderStyle.RoundedRect
txtField.autocorrectionType = UITextAutocorrectionType.No
txtField.keyboardType = UIKeyboardType.Default
txtField.returnKeyType = UIReturnKeyType.Done
txtField.clearButtonMode = UITextFieldViewMode.WhileEditing
有关在Xcode中进行调试的更多信息,请访问Apples developer site。