メインコントローラーを上に保持するスライドビューコントローラーとスライド左メニューコントローラーを使用しています。
左側のコントローラーは、Facebook/Pintrest アプリなどのメニューとして機能しますUITableView
。左側の です。
ここに私のセットアップがあります: cellForRowAtIndexPath
static NSString *CellIdentifier = @"MainMenuCell";
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
UIView *topSplitterBar = [[UIView alloc] initWithFrame:CGRectMake(0, 0, cell.bounds.size.width, 1)];
topSplitterBar.backgroundColor = [UIColor colorWithRed:62.0/255.0 green:69.0/255.0 blue:85.0/255.0 alpha:1];
[cell.contentView addSubview:topSplitterBar];
UIImage *arrowImage = [UIImage imageNamed:@"selectedArrow"];
self.arrowSelectedView = [[UIImageView alloc] initWithFrame:CGRectMake(240, 10, arrowImage.size.width, arrowImage.size.height)];
self.arrowSelectedView.image = arrowImage;
[cell.contentView addSubview:self.arrowSelectedView];
self.arrowSelectedView.hidden = YES;
}
//////
// ADDITIONAL GLUE CODE HERE TO SET LABELS ETC....
//////
if (currentDisplayed) {
// This is for the current item that is being displayed
cell.contentView.backgroundColor = [UIColor colorWithRed:50.0/255.0 green:56.0/255.0 blue:73.0/255.0 alpha:1];
self.arrowSelectedView.hidden = NO;
} else {
cell.contentView.backgroundColor = [UIColor colorWithRed:75.0/255.0 green:83.0/255.0 blue:102.0/255.0 alpha:1.0];
self.arrowSelectedView.hidden = YES;
}
NSLog(@"%@",cell.contentView.subviews);
return cell;
テーブル ビューには、2 つのセクションに合計 7 つのセルがあります。セクション 1 (0) の 1 つのセルとセクション 2 (1) の残りのセル。上部にメインコントローラーを示す 3 つのセルがあります。それらが選択されたら、次のようにセルの横に矢印を表示するようにテーブル ビューを更新したいと思います。
以下はコード例です: didSelectRowAtIndexPath
UIViewController *newTopViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"ProfileVC"];
__weak typeof(self) weakSelf = self;
[self.slidingViewController anchorTopViewOffScreenTo:ECRight animations:nil onComplete:^{
CGRect frame = weakSelf.slidingViewController.topViewController.view.frame;
weakSelf.slidingViewController.topViewController = newTopViewController;
weakSelf.slidingViewController.topViewController.view.frame = frame;
[weakSelf.slidingViewController resetTopViewWithAnimations:nil onComplete:^{
NSIndexPath* displayNameRow = [NSIndexPath indexPathForRow:0 inSection:0];
NSIndexPath* gamesRow = [NSIndexPath indexPathForRow:0 inSection:1];
NSIndexPath* settingsRow = [NSIndexPath indexPathForRow:3 inSection:1];
NSArray* rowsToReload = [NSArray arrayWithObjects:displayNameRow, gamesRow, settingsRow, nil];
[weakSelf.tableView reloadRowsAtIndexPaths:rowsToReload withRowAnimation:UITableViewRowAnimationNone];
}];
}];
問題/質問 ここで奇妙な問題があります。別のセルをクリックすると、別のセルに矢印が表示されます。その後、これはさらに 2 回機能し、3 回目は別のセルに uiimageview を表示することをランダムに決定します。
その特定のセル (正しく表示されていないセル) のセル作成プロセスをステップ実行しても、currentDisplayed のブール値が NO に設定されているため、arrowSelectedView が非表示に変更されません。サブビューをログアウトすると、その特定のセルが非表示に設定されていなくても、ランダムに非表示ではないことがわかります。これはどういうわけか間違って実装されていると思いますか?