我在使用UITableViewHeaderFooterView
类时遇到问题。在我的应用程序中,我想同时使用textLabel
和detailTextLabel
属性来显示一些文本,但detailTextLabel
不显示。据我了解 Apple 的文档,textLabel
并且detailTextLabel
属性的工作方式应该类似于众所周知的textLabel
和类detailTextLabel
的属性UITableViewCell
。这是我的示例类代码:
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UITableView *tblMain;
@end
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize tblMain;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
tblMain.delegate = self;
tblMain.dataSource = self;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *reuseIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier];
}
cell.textLabel.text = @"cell is not interesting";
return cell;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 3;
}// Default is 1 if not implemented
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
NSString *reuseIdentifier = @"header";
UITableViewHeaderFooterView *header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:reuseIdentifier];
if (!header) {
header = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:reuseIdentifier];
}
header.textLabel.text = @"t";
header.detailTextLabel.text = @"dtext";
return header;
}
@end
如果编译此代码,它将显示一个包含三个部分和每个部分一行的表格。我想我会得到左侧带有“t”和右侧带有“dtext”的部分,但错过了“dtext”。我的代码中的错误在哪里?查看detailTextLabel要做什么?UITableViewHeaderFooterView
detailTextLabel
还可以提供指向财产工作示例的链接。谢谢!