我已经实现了一个optionTable,它存储了我的应用程序执行的选项列表
我在选项表中定义了一个协议方法,以便主表知道用户何时选择了一个选项
//Protocol defined in **OPTIONSTABLEVIEW**
@protocol OptionsTableDelegate <NSObject>
-(void)didSelectOption:(NSString *)option withtitleString:(NSString*)titleString;
@end
//Set the delegate property
@interface OptionsTableView : UITableView <UITableViewDataSource,UITableViewDelegate>
{
id optionTableDelegate;
}
@end
用户在optionstableview
中选择一个选项后会触发此委托方法//User selects an option and the delegate method is triggered
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
switch (indexPath.row)
{
case OPTION_LATEST:
self.option = @"for_you";
self.titleString = [self.optionsArray objectAtIndex:OPTION_LATEST];
break;
case OPTION_RANDOM:
self.option = @"random";
self.titleString = [self.optionsArray objectAtIndex:OPTION_RANDOM];
break;
default:
break;
}
//Delegate method triggered to return the option and title string to the main table
[self.optionTableDelegate didSelectOption:self.option withtitleString:self.titleString];
}
在主表(调用选项表)中,我将选项表委托设置为self,并且还包括委托方法
//Main table **QUESTIONTABLEVIEWCONTROLLER**
- (void)viewDidLoad
{
[super viewDidLoad];
//Set up options tableview
self.optionsTableHeight = 24 + (44*2);
CGRect optionsTableFrame = CGRectMake(0, -optionsTableHeight, 320, optionsTableHeight);
OptionsTableView *tempOptionsTable = [[OptionsTableView alloc]initWithFrame:optionsTableFrame style:UITableViewStyleGrouped];
self.optionsTableView = tempOptionsTable;
//Setting the delegate to self
self.optionsTableView.optionTableDelegate = self;
[self.view addSubview:self.optionsTableView];
}
我尝试在主表的委托方法中设置页面标题
//Delegate method in main table
-(void)didSelectOption:(NSString *)option withtitleString:(NSString *)titleString
{
//Set title here (doesn't work)
self.title = titleString;
NSLog(@"title :%@",self.title);
self.type = option;
[self.optionsTableView slideOptionsTableOut];
[self getData];
}
我的页面标题在上面的委托方法中没有变化。有关如何在选项表中选择选项后更改标题的建议吗?
答案 0 :(得分:0)
尝试制作两个中的一个:
1)将[self.optionTableDelegate didSelectOption:self.option withtitleString:self.titleString];
替换为[self didSelectOption:self.option withtitleString:self.titleString];
2)将self.optionsTableView.optionTableDelegate = self;
替换为self.optionTableDelegate = self;
答案 1 :(得分:0)
您可以使用[self.navigationItem setTitle:@"Your Title"];
更新导航栏的标题。