按钮轻敲swift时添加行或文本字段

时间:2016-01-11 07:26:40

标签: ios swift uitableview uitextfield

我需要帮助。当点击我在视图上的自定义UI按钮时,如何在uiview或uitableview中添加新的文本字段。当用户想要添加新的电话号码时,如iphone中的联系人应用程序。

Like this picture

行或文本字段中的所有内容都可以由用户编辑,如果用户点击导航栏上的保存按钮,数据将被保存。

1 个答案:

答案 0 :(得分:0)

而不是重新加载tableview,你应该对tableview使用beginUpdates()和endUpdates()。这将是更好的方法..

首先在按钮点击

上附加tableview数组中的数据
Yourarray.append(" data")  

然后更新你的表并插入新行

   tblname.beginUpdates()
    tblname.insertRowsAtIndexPaths([
        NSIndexPath(forRow: Yourarray.count-1, inSection: 0)
        ], withRowAnimation: .Automatic)
    tblname.endUpdates()