由NSFetchedResultsController支持的表视图控制器,单元格标签有问题

时间:2016-05-26 09:23:28

标签: ios swift uitableview tableview nsfetchedresultscontroller

我在表视图控制器中使用public partial class Reflection : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Type type = this.GetType(); foreach(MethodInfo info in type.GetMethods()) { if (info.Name.StartsWith("DoStuff")) info.Invoke(this,null); } } public void DoStuff1() { Response.Write("DoStuff1<br />"); } public void DoStuff2() { Response.Write("DoStuff2<br />"); } public void DoStuff3() { Response.Write("DoStuff3<br />"); } } ,当我通过单击右上角的添加按钮插入条目时,表格视图单元格中的标签与预期的大小不同。

但是当我重新启动应用程序时,问题就会消失。发生了什么事?

enter image description here

0 个答案:

没有答案