0

我正在使用本教程来了解如何创建弹出菜单。 http://www.appcoda.com/ios-programming-sidebar-navigation-menu/

在阅读教程时我得到了它,现在我正在尝试将它实现到我的应用程序中。

我正处于可以按下菜单按钮并出现弹出菜单的阶段。问题是,它不会用我的表格视图单元格填充自己。

我为每个表格视图单元格设置标识符,然后在代码中引用它们以填充一个数组。

我知道在阅读本教程时,如果我在定义数组中的内容时拼错了其中一个标识符,程序就会崩溃。在我的应用程序中,情况并非如此。希望这可以帮助解决问题。它甚至不会改变代码第一部分的颜色。

这是代码。

#import "SidebarViewController.h"
#import "SWRevealViewController.h"


@interface SidebarViewController ()

@property (nonatomic, strong) NSArray *menuItems;


@end

@implementation SidebarViewController

- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
    // Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];

self.view.backgroundColor = [UIColor colorWithWhite:0.2f alpha:1.0f];
self.tableView.backgroundColor = [UIColor colorWithWhite:0.2f alpha:1.0f];
self.tableView.separatorColor = [UIColor colorWithWhite:0.15f alpha:0.2f];

_menuItems = @[@"markup",@"tax"];

}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [self.menuItems count];

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath     *)indexPath
{
NSString *CellIdentifier = [self.menuItems objectAtIndex:indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

return cell;
}

任何帮助都会很棒。

谢谢

4

2 回答 2

2

您所做的只是创建一个包含两个字符串文字的数组。text您必须在以下方法中设置 textlabel 的属性才能在表格视图单元格中显示字符串:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }
    cell.textLabel.text = [_menuItems objectAtIndexPath:indexPath.row];
    return cell;
}
于 2013-08-04T20:20:10.650 回答
0

天哪,我觉得自己像个菜鸟。事实证明 ViewControler 没有目标,因此它没有响应。

很抱歉浪费了你的时间,我现在真的很难过。

于 2013-08-04T21:25:54.720 回答