我是开发iOS App的初学者。我正在为我的应用创建登录视图。我有一个现有的UITextView
已经包含4个部分。每个部分只包含一行中的一个单元格。
我的cellForRowAtIndexPath
方法如下:
-- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.section == 0)
{ return cellEmail; }
else if(indexPath.section == 1)
{ return cellPassword; }
else if(indexPath.section == 2)
{ return cellLoginButton; }
else return cellFacebookLogin;
return nil;
}
上面显示的代码cellEmail
包含emailTextField
,cellPassword
包含passwordTextField
,cellLoginButton
包含LoginButton
和{{1} }包含cellFacebookLogin
。它们都已经注册并成功显示在屏幕上。
现在,我想插入一个包含忘记密码按钮的单元格的部分。
我的意思是,如何在FacebookButton
和cellForgetPassword
之间插入新的cellPassword
部分?
我尝试过这样的代码,但它不起作用:
cellLoginButton
我该如何解决这个问题?非常感谢你!