EDit:
我有带有两个选项卡的tabbarcontroller,第一个选项卡有一个viewController,第二个选项卡有带有的navigationViewController和带有tableView的两个ViewControllers堆栈。
Tab1 ---> VC1
Tab2 ---> NVC-> fistVC1 ----推送到-----> secondVC2。
我要推送的代码:
fistVC1.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 0 & (indexPath.row == 0)) {
_secondVC2 = [[secondVC2 alloc] init];
[self.navigationController pushViewController:_secondVC2 animated:YES];
[_secondVC2 release];
我需要做的是将VC1设置为secondVC2的委托,当选择secondVC2单元时,我想向VC1发送消息。
我该怎么办,请给我一些建议。
我尝试像打击:
secondVC2.h
@protocol secondVC2Delegate <NSObject>
- (void)someMethod;
@end
#import <UIKit/UIKit.h>
@interface secondVC2 :UIViewController<UITableViewDelegate,UITableViewDataSource>
{
id<secondVC2Delegate>delegate;
}
@property (nonatomic ,assign) id<secondVC2Delegate>delegate;
@end;
secondVC2.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"delegate%@",self.delegate);
if (indexPath.row == 0) {
[self.delegate someMethod];
}
VC1.h
#import <UIKit/UIKit.h>
#import"secondVC2"
@interface VC1 :UIViewController<secondVC2Delegate>{
secondVC2 *tvc2;
}
@property (nonatomic ,retain) secondVC2 *tvc2;
- (void)someMethod;
@end;
VC1.m
- (void)viewDidLoad
{
tvc2 = [secondVC2 alloc] init];
tvc2.delegate = self;
}
但是代表一直被释放,我在第二个VC2中没有代表,我不知道为什么。
那我怎么能做到这一点呢?
最佳答案
ViewController1 *viewController1 = [[ViewController1 alloc] init];
ViewController2 *viewController2 = [[ViewController2 alloc] init];
viewController1.delegate = viewController2;
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController2];
[self.tabBarController setViewControllers:@[viewController1, navigationController]];
您还可以查看
NSNotificationCenter
。关于iphone - 如何在TabbarController中设置viewControllers的委托(delegate)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17689964/