尝试使用表格视图从popover(ViewCont B)隐藏/显示ViewCont A上的文本字段

时间:2015-06-19 16:02:43

标签: ios ipad tableview popover

这个问题有一些变化,但似乎没有任何帮助。 我有两个View控制器

  

View Controller(A)中有一个文本字段。这个文本字段需要   显示/隐藏取决于从a中选择的indexPath.row   驻留在弹出视图(B)中的tableView。

请帮忙。

在文本字段所在的vc的.h文件中:

@interface GlobalPageSideDetailViewController : BaseViewController 

<UITextFieldDelegate, UIAlertViewDelegate,UIPopoverControllerDelegate>

@property (strong, nonatomic) IBOutlet UITextField *otherTextField;



in .m of where popover (with table view) resides:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    NSLog(@"For table View in popover: %ld", (long)indexPath.row);

    if (indexPath.row == 3) {
        //otherTextField.hidden = false;

        //trying to hide/show text field here



    }

}

任何帮助将不胜感激。谢谢!

0 个答案:

没有答案