最初我有一个自定义NavigationBar,没有导航控制器。我有一个滑动菜单。
在主屏幕上有一个带有列表的tableview。我希望能够将项目添加到此列表中。所以,我必须在事后加入导航控制器。我将导航控制器添加到故事板并将其链接到我的主视图控制器[列表中的那个]。然后我拖入一个视图控制器。我将一个条形按钮项目放入导航项目,然后将其推送到最近添加的视图控制器。
我运行了我的应用程序,该应用程序现在没有显示任何导航栏或导航项目。最初我有一个自定义导航栏。
我不太清楚这里发生了什么。谢谢你的帮助。
- (void)customizeAppearance {
UIImage *NavBG = [UIImage imageNamed:@"nav bar.png"];
[[UINavigationBar appearance] setBackgroundImage:NavBG forBarMetrics:UIBarMetricsDefault];
从.m
中查看控制器代码#import "initViewController.h"
#import "ECSlidingViewController.h"
#import "MenuViewController.h"
@interface initViewController ()
@end
@implementation initViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.topViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Main"];
}
来自.h
#import "ECSlidingViewController.h"
@interface initViewController : ECSlidingViewController
@end
来自main.m
#import "MainViewController.h"
#import "ECSlidingViewController.h"
#import "MenuViewController.h"
@interface MainViewController ()
@end
@implementation MainViewController
{
NSArray *toDoList;
NSIndexPath *selectedIndexPath;
}
@synthesize menuBtn;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
来自main.h的
#import <UIKit/UIKit.h>
@interface MainViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
{
}
@property (strong, nonatomic) UIButton *menuBtn; // go to MenuViewController.m and synthesize
@end
第二个视图controller.m文件
#import "SecondViewController.h"
#import "ECSlidingViewController.h"
#import "MenuViewController.h"
@interface SecondViewController ()
@end
@implementation SecondViewController
@synthesize menuBtn;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Below is the same stuff pasted from MainViewController.m
// Do any additional setup after loading the view.
self.view.layer.shadowOpacity = 0.75f;
self.view.layer.shadowOpacity = 10.0f;
self.view.layer.shadowColor = [UIColor blackColor].CGColor;
if (![self.slidingViewController.underLeftViewController isKindOfClass:[MenuViewController class]]) {
self.slidingViewController.underLeftViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Menu"];
}
[self.view addGestureRecognizer:self.slidingViewController.panGesture];
self.menuBtn = [UIButton buttonWithType:UIButtonTypeCustom];
menuBtn.frame = CGRectMake(8, 10, 34, 24);
[menuBtn setBackgroundImage:[UIImage imageNamed:@"menuButton.png"] forState:UIControlStateNormal];
[menuBtn addTarget:self action:@selector(revealMenu:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:self.menuBtn];
}
以下是我使用的所有数组
答案 0 :(得分:-1)
从您显示的图像中,看起来任何VC都没有左侧的起始箭头。如果是这种情况,请转到SB,单击导航控制器,转到右侧的属性检查器,向下滚动并选中“是初始视图控制器”。
希望这能解决问题。
更新:猜测您的代码,您正在尝试修改不可变的NSArray。将您的声明更改为NSMutableArray * toDoList。