我在标签栏控制器中有两个视图控制器(两者都嵌入在导航控制器中)。 ViewControllerA有两个按钮(MybuttonA和MybuttonB,在故事板中未选中启用框)。 ViewControllerB是一个TableViewController。我想在ViewControllerB表中选择特定行时启用ViewControllerA中的按钮。每个按钮在启用时都会推送不同的视图控制器。
我的当前代码仅在ViewControllersA和ViewControllersB未嵌入导航控制器时有效。但是如果没有导航控制器嵌入,启用的按钮不会推送ViewControllers。
ViewControllerA.h
#import <UIKit/UIKit.h>
@interface ViewControllerA : UIViewController {
IBOutlet UIButton * MybuttonA;
IBOutlet UIButton * MybuttonB;
}
-(IBAction)mybuttonaction:(id)sender;
@property(strong,nonatomic)UIButton *MybuttonA;
@property(strong,nonatomic)UIButton *MybuttonB;
@end
ViewControllerA.m
#import "ViewControllerA.h"
@interface ViewControllerA ()
@end
@implementation ViewControllerA
@synthesize MybuttonA;
@synthesize MybuttonB;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
-(IBAction)mybuttonaction:(id)sender{
//write code to push view controller
}
ViewControllerB.h
#import <UIKit/UIKit.h>
#import "ViewControllerA.h"
@interface ViewControllerB : UITableViewController{
ViewControllerA *viewcontrollerA;
}
@property (nonatomic, retain) ViewControllerA *viewcontrollerA;
@end
ViewControllerB.m
#import "ViewControllerB.h"
#import "ViewControllerA.h"
@interface ViewControllerB () {
}
@end
@implementation ViewControllerB
@synthesize viewcontrollerA;
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"CONTENTS";
self.refreshControl = [[UIRefreshControl alloc] init];
[self.refreshControl addTarget:self action:@selector(reload) forControlEvents:UIControlEventValueChanged];
[self reload];
[self.refreshControl beginRefreshing];
viewcontrollerA = [self.tabBarController.viewControllers objectAtIndex:0];
}
#pragma mark - Table View
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{return 1;}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
{return 5;}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.textLabel.text = [NSString stringWithFormat: @"Cell #%d", indexPath.row];
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
NSString* value = [tableView cellForRowAtIndexPath:indexPath].textLabel.text;
if ([value isEqual:@"1"]){
viewcontrollerA.MybuttonA.enabled=YES;
}
else if ([value isEqual:@"2"])
{
viewcontrollerA.MybuttonB.enabled=YES;
}
}
else {
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
}
@end
答案 0 :(得分:1)
使用此:
viewcontrollerA = ((UINavigationController*)[self.tabBarController.viewControllers objectAtIndex:0] ).topViewController
而不是:
viewcontrollerA = [self.tabBarController.viewControllers objectAtIndex:0];
答案 1 :(得分:1)
使用委托或“NSNotification”在对象之间传递消息。为B类创建协议,并在选择其中的特定行时向其委托发送消息,并使视图控制器A符合此协议。当从视图控制器B收到委托消息时,在视图控制器A中进行更改。
或者对于松散的广播,您可以在视图控制器B中触发/发布关于行选择的通知,并使视图控制器A成为监听器,并更改通知发布的视图。
虽然代表团是你的理由。