作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了 UITableViewCell 的自定义子类。在那里,我允许用户在 UITextView 中编辑一些文本。单元格属于弹出 View 中的表,该表是 Root View 的 subview 。现在,我需要将表格单元格中编辑的文本以及单元格中的其他数据传递给 Root View 。这是因为,这个编辑过的数据必须被发送到一个 web View ,它也是 Root View 的一个 subview 。
我考虑了以下方法。一种是将弹出 View 作为自定义单元格 View 的委托(delegate),将 Root View 作为弹出 View 的委托(delegate),并通过委托(delegate)方法调用传递数据。这可能会使设计过于复杂。第二种方法是在创建时将对 webview 的引用存储在单例类中,并直接从单元格中更新它。但这会使所有这些类试图实现的封装完全没有意义。
最好的方法是什么?除了我建议的两种方法之外,还有其他方法吗?
最佳答案
使用NSNotificationCenter
,见Class Reference
创建通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(doSomething:) name:@"doSomething" object:nil];
NSString * testString = @"Testing NSNotificationCenter";
[[NSNotificationCenter defaultCenter] postNotificationName: @"doSomething" object: testString];
- (void)doSomething:(NSNotification *)notification
{
NSString * someString = [notification object];
NSLog(@"String Passed from NSNotificationCenter: %@", someString);
}
关于iphone - 如何将数据从 UITableViewCell 子类传递到 iOS 中的 RootViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11233022/
我是一名优秀的程序员,十分优秀!