如何从另一个UIViewController重新加载UITableViewController

时间:2012-08-28 13:21:21

标签: objective-c ios tableview viewcontroller

我想从另一个viewcontroller重新加载一个tableview(我正在处理PSStackedViewExample https://github.com/steipete/PSStackedView)。我的UIViewController我在UITableViewController上做了一些修改,我正在对我的TableView上的数据进行更改,这就是为什么我想重新加载tableview以便在我修改UIViewController时直接看到更改。< / p>

我无法访问它...每次我对此感到疯狂,你能帮助我吗?

在PSStackedExample项目上的

,我所说的UITableViewController是ExampleViewController2。 我正在谈论的UIViewController是:ExampleViewController1

以下是一些代码,以防您不下载项目:

ExampleMenuRootController这是主控制器,它调用UITableViewController

.h首先 - &gt;

#import <UIKit/UIKit.h>
#import "Guest.h"

@interface ExampleMenuRootController : UIViewController <UITableViewDataSource, UITableViewDelegate> {
    UITableView *menuTable_;
    NSArray *cellContents_;
    singleObjGetData * sObjDataForRootVC;
    UIViewController *viewController;
}
@property (nonatomic, retain)  UIViewController *viewController;
@property (nonatomic,strong) NSManagedObjectContext* managedObjectContext;
- (void)checkDictionnaryForIndexPathForFunction;
-(IBAction)showTable:(id)sender;
- (void)checkDictionnaryForIndexPath:(NSString *)check;
@end

.m - &gt;

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    PSStackedViewController *stackController = XAppDelegate.stackController;
     viewController = nil;

        [sObjDataForRootVC.tmpGuest removeAllObjects];
        [self checkDictionnaryForIndexPath:@"0"];
        [self checkDictionnaryForIndexPath:@"1"];
        [self checkDictionnaryForIndexPath:@"2"];
    if (indexPath.row > 0 && indexPath.row < 4)
    {
    [sObjDataForRootVC.tmpGuest removeAllObjects];
    [self checkDictionnaryForIndexPath:[NSString stringWithFormat:@"%i", indexPath.row - 1]];
    }
    if (indexPath.row > 3 && indexPath.row < 8)
    {
        [sObjDataForRootVC.tmpGuest removeAllObjects];
        [self checkDictionnaryForIndexPathForFunction];
    }

    while ([stackController.viewControllers count]) {
        [stackController popViewControllerAnimated:YES];
    }

// HERE I CALL THE UITABLEVIEWCONTROLLER !!!

    viewController = [[ExampleViewController2 alloc] initWithStyle:UITableViewStylePlain];     
    ((ExampleViewController2 *)viewController).indexNumber = [stackController.viewControllers count];

    if (viewController) {
        [XAppDelegate.stackController pushViewController:viewController fromViewController:nil animated:YES];
    }
}

然后在下面,UIViewController的.h将修改UITableView。我需要在以前的UITableViewController

的tableview上做一个reloadData
#include "PSStackedViewDelegate.h"
#import "AppDelegate.h"

@interface ExampleViewController1 : UIViewController <PSStackedViewDelegate, UITextFieldDelegate>
{
    IBOutlet UIButton *validateBtn;
    IBOutlet UIButton *cancelBtn;

    singleObjGetData *sObjDataForRootVC;
}

.m

#import "ExampleViewController1.h"
#import "ExampleViewController2.h"
#import "ExampleMenuRootController.h"
#import "PSStackedView.h"

@implementation ExampleViewController1


#pragma mark - View lifecycle

- (void)viewDidLoad {

    sObjDataForRootVC  = [singleObjGetData singleObj];
    confirmPressed = NO;
    [self setUpView];

    [super viewDidLoad];
    self.view.width = PSIsIpad() ? 400 : 150;
}

非常感谢帮助...

1 个答案:

答案 0 :(得分:0)

您可以通过在第二个tableview中设置通知来执行此操作,该通知在第一个tableview上调用reloadData。把它放在你的第二个tableView:

[[NSNotificationCenter defaultCenter]
 postNotificationName:@"refreshData"
 object:nil
 userInfo:nil//userInfoDictionary
 ];

在你的第一个tableView中输入:

[[NSNotificationCenter defaultCenter]
 addObserver:self
 selector:@selector(methodToRefreshYourFirstTable)
 name:@"refreshData"
 object:nil];