gpt4 book ai didi

iphone - UIPopoverController 与 UITableView

转载 作者:行者123 更新时间:2023-11-28 23:15:41 25 4
gpt4 key购买 nike

我有一个 UIPopoverController,它有一个已填充的 UITableView。我正在尝试将信息从 popovercontroller 传递到 superview。放置在 popovercontroller 中的 tableview 正在使用 didSelectRow 方法接收信息,但信息没有传输到放置在 superView 中的 textView。

下面是我用来尝试将所选用户放置在 TextView 中的代码,下面是 Superview 代码,在该代码中我尝试获取字符串并将其放入实际字段中,当单击索引时。我知道我的问题是我没有告诉我的 superView 该行已被触及并将该信息发送到该字段,但我已经搜索过并且找不到关于如何尝试此操作的良好解释。

如果有人有任何建议那就太好了!

谢谢

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

if (indexPath){


NSString *selectedUser = [(Tweet*)[Friend objectAtIndex:indexPath.row]
followingScreenName];


TwitterFollowersTimline *textBox = [[TwitterFollowersTimline alloc]
initWithNibName:@"TwitterFollowersTimeline" bundle:[NSBundle mainBundle]];



textBox.selectedFriend = selectedUser;


NSLog(@"%@", selectedUser);



[textBox release];
textBox = nil;
}


}

在我的 super View 中

    selectedFriend = [[NSString alloc] init];
creatTweetText.text = [NSString stringWithFormat:@"@%@", selectedFriend];

最佳答案

为了从弹出窗口的 View Controller 传递信息,您需要设置一个委托(delegate)。这是 Apple 文档的链接,也是一个很好的指南示例。

https://developer.apple.com/library/content/documentation/General/Conceptual/DevPedia-CocoaCore/Delegation.html

http://iosdevelopertips.com/objective-c/the-basics-of-protocols-and-delegates.html

本质上,当您创建包含 TableView 方法的 View Controller 时,您需要给它一个委托(delegate)。然后,一旦在表格 View 中选择了一个单元格,您就可以向您的代理人发送电话,并提供您需要的任何信息。

关于iphone - UIPopoverController 与 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6575410/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com