テーブルを初期化し、UIView をデリゲートとして設定する UIView があります。私の .h ファイル:
...
@interface vOperatingRooms : UIView <UITableViewDataSource, UITableViewDelegate>{
...
テーブル init は showSelf というメソッドにあり、TV が表示される場所をテストしました。init は次のとおりです。
...
dataTable = [[UITableView alloc] init];
CGRect dataTableFrame = dataTable.frame;
dataTableFrame.origin.x = (self.frame.size.width/2)-100;
dataTableFrame.origin.y = 115.0;
dataTableFrame.size.width = 200.0;
dataTableFrame.size.height = 200.0;
dataTable.frame = dataTableFrame;
dataTable.alpha = 0.0;
dataTable.tag = 33;
dataTable.delegate = self;
dataTable.dataSource = self;
[self addSubview:dataTable];
...
plist から読み取り、テーブルのデータソースを構築する別のメソッド:
...
//set up the directory path
NSString* pathToProjectFolder = [NSString stringWithFormat:@"Projects/%@", projectNumber];
//set up the file path
NSString* ORDataFilePath = [NSString stringWithFormat:@"%@/ORData.plist", pathToProjectFolder];
//check to make sure the project directory exists and the ORData.plist file
[fileManager createDirectory:pathToProjectFolder];
[fileManager createPlist:ORDataFilePath];
//pull the data from the file
NSDictionary* ORData = [fileManager readPlist:ORDataFilePath];
ORNames = [[NSMutableArray alloc] init];
for(NSString* thisOR in ORData){
if (![thisOR isEqualToString:@"File Name"]) {
[ORNames addObject:thisOR];
}
}
//fade in table
//fade in
[UIView animateWithDuration:0.25 delay:0.0 options:UIViewAnimationOptionCurveEaseOut
animations:^{
dataTable.alpha = 1.0;
}
completion:^ (BOOL finished) {
}
];
...
結果をログに記録し、探しているデータを取得しています - これは NSArray ORNames のコンソールです:
2012-12-06 15:01:23.370 IntegrationSiteReport[18697:c07] (
Test4,
Test6
)
デリゲート メソッドは次のとおりです。
#pragma mark Table View Management
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return ORNames.count;
NSLog(@"%i", ORNames.count);
}
// Customize the appearance of table view cells.
- (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];
}
cell.textLabel.text = [ORNames objectAtIndex:indexPath.row];
cell.textLabel.textColor = [colorManager setColor:66.0 :66.0 :66.0];
cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:20.0];
return cell;
}
それらの中から何もログが記録されていないため、それらが呼び出されていないことはわかっています。私がここに欠けているものはありますか?