У меня есть UIView, который выдвигает UITableViewController, который содержится внутри UITabBarController.
#import <UIKit/UIKit.h>
@interface ARViewController : UITableViewController<UITabBarControllerDelegate> {
IBOutlet UITabBarController* tabBarController;
}
@property(nonatomic,retain)IBOutlet UITabBarController* tabBarController;
@end
Вот моя реализация
- (void)viewDidLoad {
[super viewDidLoad];
// Uncomment the following line to preserve selection between presentations.
self.clearsSelectionOnViewWillAppear = NO;
self.title = @"AR";
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
tabBarController.delegate = self;
[self.view addSubview:tabBarController.view];
}
Мой UITabBarController ссылается на владельца файлов. Почему это не появляется?