自定义文本字段

时间:2013-07-29 15:55:44

标签: ios cocoa-touch uitextfield

所以 - 我正在尝试应用程序设计。

这是我的概念:Concept

看到蓝线?这应该是用户“光标”开始的地方,并且不能在这一点之后消极,但可以积极地移动到框的末尾。

2 个答案:

答案 0 :(得分:0)

只要UITextField在冒号后面开始并且没有超出单元格的后缘,就应该没有问题。你在使用代码或Interface Builder进行布局吗?

答案 1 :(得分:0)

我使用UITableview完成了类似的UI。用于在cellForRowAtIndexPath中为单元格设置用户名标签的代码(使用密码行的类似代码):

tableViewCell.textLabel.text = @"Username:";

以下是设置文本字段的代码:

UITextField *textField = [[UITextField alloc] initWithFrame:textFieldRect];
//Insert code for text field delegate and properties e.g. keyboardType, autocorrectionType

tableViewCell.accessoryView = textField;