微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ios – UITableView和tvOS的新方法

我正在创建一个测试tvOS应用程序.我有一个图像(在tableview之外),当“聚焦”没有被选中时,我希望图像改变…我知道苹果已经添加了几种聚焦方法.有人可以告诉我,当它处于“焦点”时,我将使用哪些方法来更改此图像?我将如何使用它?
我会使用这种方法

- (BOOL)tableView:(UITableView *)tableView canFocusRowAtIndexPath:(NSIndexPath *)indexPath

或者我会使用:

- (void)tableView:(UITableView *)tableView didUpdateFocusInContext:(UITableViewFocusUpdateContext *)context withAnimationCoordinator:(UIFocusAnimationCoordinator *)coordinator

请告诉我!谢谢!

解决方法

如果要在UITableViewCell项获得焦点时更改图像,则应使用第二种方法.

- (void)tableView:(UITableView *)tableView didUpdateFocusInContext:(UITableViewFocusUpdateContext *)context withAnimationCoordinator:(UIFocusAnimationCoordinator *)coordinator
{
   //You can get focused indexPath like below
   NSIndexPath *nextIndexPath = [context nextFocusedindexPath];
   // Now get image from data source,I will assume you have an images array
   UIImage *image = [_imagesArray objectAtIndex:nextIndexPath.row];
   // Set image to image view,assuming you have a property imageView
   _imageView.image = image;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐