如果我的数组不是 nil 使用以下代码,我想隐藏一个按钮,但是由于某种原因它不起作用。我在我的代码中看不到任何错误..请帮助我..谢谢..
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
NSString *title = nil;
HowtoUseButton = [[[CustomButton alloc] init] autorelease];
[HowtoUseButton addTarget:self action:@selector(openLink) forControlEvents:UIControlEventTouchDown];
HowtoUseButton.frame = CGRectMake(80.0, 140.0, 160.0, 70.0);
[self.view addSubview:HowtoUseButton];
if (document.count > 0){
HowtoUseButton.hidden = YES; // not working
title = Title_Doc;
}
else if (self.documentURLs.count == 0){
title = Title_No_Doc;
HowtoUseButton.hidden = NO;
}
return title;
}