ビューベースのアプリケーションがあり、メインビューにサブビューとしてテーブルビューを追加しています。テーブルメソッドに応答するためにUITableViewDelegate
を使用しました。すべて正常に動作していますが、デフォルトの選択(強調表示)として最初の行またはUITableView
を選択します。
必要なコードと配置する場所を教えてください。
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:0];
[myTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionBottom];
}
コードでこれを使用する最良の方法は、デフォルトで行を選択する場合は、viewDidAppearで使用します。
Swit 3.0更新ソリューション
let indexPath = IndexPath(row: 0, section: 0)
tblView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom)
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
// assuming you had the table view wired to IBOutlet myTableView
// and that you wanted to select the first item in the first section
[myTableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:0];
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.detailViewController = (DetailViewController *)[[self.splitViewController.viewControllers lastObject] topViewController];
if([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad){
NSIndexPath* indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionTop];
[self tableView:self.tableView didSelectRowAtIndexPath:indexPath];
}
}
Swift 4アップデート:
func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
let indexPath = IndexPath(row: 0, section: 0)
myTableView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom)
}
別のセクションの他の行を選択する場合は、行とセクションの値を変更します。
Swift 1.2でこれを行う方法は次のとおりです。
override func viewWillAppear(animated: Bool) {
let firstIndexPath = NSIndexPath(forRow: 0, inSection: 0)
self.tableView.selectRowAtIndexPath(firstIndexPath, animated: true, scrollPosition: .Top)
}
Swift 3.0:の私のソリューションです
var selectedDefaultIndexPath = false
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
if dataSource.isEmpty == false, selectedDefaultIndexPath == false {
let indexPath = IndexPath(row: 0, section: 0)
// if have not this, cell.backgroundView will nil.
tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
// trigger delegate to do something.
_ = tableView.delegate?.tableView?(tableView, willSelectRowAt: indexPath)
selectedDefaultIndexPath = true
}
}
func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
let cell = tableView.cellForRow(at: indexPath)
cell?.selectedBackgroundView?.backgroundColor = UIColor(hexString: "#F0F0F0")
return indexPath
}
テーブルが最初にロードされたときに最初のセルのみを選択するには、viewDidLoad
を使用するのが適切な場所であると考えられますbut、その実行時に、テーブルはhasn内容をロードしなかったため、機能しません(NSIndexPath
が存在しないセルを指すため、おそらくアプリをクラッシュさせます)。
回避策は、テーブルが以前にロードされたことを示す変数を使用し、それに応じて作業を行うことです。
@implementation MyClass {
BOOL _tableHasBeenShownAtLeastOnce;
}
- (void)viewDidLoad
{
[super viewDidLoad];
_tableHasBeenShownAtLeastOnce = NO; // Only on first run
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if ( ! _tableHasBeenShownAtLeastOnce )
{
_tableHasBeenShownAtLeastOnce = YES;
BOOL animationEnabledForInitialFirstRowSelect = YES; // Whether to animate the selection of the first row or not... in viewDidAppear:, it should be YES (to "smooth" it). If you use this same technique in viewWillAppear: then "YES" has no point, since the view hasn't appeared yet.
NSIndexPath *indexPathForFirstRow = [NSIndexPath indexPathForRow:0 inSection: 0];
[self.tableView selectRowAtIndexPath:indexPathForFirstRow animated:animationEnabledForInitialFirstRowSelect scrollPosition:UITableViewScrollPositionTop];
}
}
/* More Objective-C... */
@end
最初のセルであるかどうかに基づいて、セルにカスタム背景画像を使用します...中間セルまたは最後のセル。そうすることで、テーブル全体がすてきな丸みを帯びた外観になります。行が選択されると、ニースの「強調表示された」セルが交換され、ユーザーがセルを選択したことをフィードバックできます。
UIImage *rowBackground;
UIImage *selectionBackground;
NSInteger sectionRows = [tableView numberOfRowsInSection:[indexPath section]];
NSInteger row = [indexPath row];
if (row == 0 && row == sectionRows - 1)
{
rowBackground = [UIImage imageNamed:@"topAndBottomRow.png"];
selectionBackground = [UIImage imageNamed:@"topAndBottomRowSelected.png"];
}
else if (row == 0)
{
rowBackground = [UIImage imageNamed:@"topRow.png"];
selectionBackground = [UIImage imageNamed:@"topRowSelected.png"];
}
else if (row == sectionRows - 1)
{
rowBackground = [UIImage imageNamed:@"bottomRow.png"];
selectionBackground = [UIImage imageNamed:@"bottomRowSelected.png"];
}
else
{
rowBackground = [UIImage imageNamed:@"middleRow.png"];
selectionBackground = [UIImage imageNamed:@"middleRowSelected.png"];
}
((UIImageView *)cell.backgroundView).image = rowBackground;
((UIImageView *)cell.selectedBackgroundView).image = selectionBackground;
IndexPath.row == 0にある最初のセルのみを作成して、カスタム背景を使用する場合。
これは、Matt Gallagherの excellent site から派生しています