如何在UITableView(UITableViewCell)中实现与UITextField类似的UI?
我希望在 UITableViewCell (在 UITableView 内)中使用 UITextField 来模拟以下 UI。我是 MonoTouch 新手,我似乎无法弄清楚代码会是什么样子。
I am looking to mimic the following UI using a UITextField within a UITableViewCell (within a UITableView). I am new to MonoTouch and I can't seem to figure out what the code would look like for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很简单。只需向单元格添加一个没有背景颜色的 UITextField 即可。在
cellForRowAtIndexPath
方法中添加以下代码。This is very simple. Just add a UITextField with no background color to the cell. Add the below code in your
cellForRowAtIndexPath
method.该单元格是自定义单元格。它有一些属性、一个可编辑的 UITextField 和一个用于空内容的占位字符串。下面的代码是手写的,所以可能里面有一些bug。
The cell is a custom cell. It has some properties, a editable UITextField, and a placehold string for empty content. The following code is writed by hand, so maybe there are some bugs inside.