Table View scroll when text field begin editing iphone

前端 未结 3 1475
-上瘾入骨i
-上瘾入骨i 2021-01-17 04:51

I have table view controller in iphone application. Table view has two sections. First section has two rows and second section has one row. Second section has a custom table

3条回答
  •  星月不相逢
    2021-01-17 05:20

    I have run into this on Static Cell TVC's. There is an issue when overriding viewWillAppear and NOT calling its Super. So if you are doing that, make sure to call

    [super viewWillAppear:animated];
    

    at the top of viewWillAppear

提交回复
热议问题