Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想以编程方式创建一个UITableViewCell类似于我们可以在 iPhone 联系人应用程序中看到的用于输入手机号码的单元格。怎么做??那条竖线怎么画?
UITableViewCell
您必须创建一个自定义UITableViewCell来创建它。在您的自定义UITableViewCell中,您必须创建以下内容:
UIView
UILable
UITextField
UITableViewCell使用您自己的实现自定义。取一个UItableViewCell子类View并在其中绘制/添加您的实现。
UItableViewCell
View