我会使用这种方法:
- (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;}总结
以上是内存溢出为你收集整理的ios – UITableView和tvOS的新方法全部内容,希望文章能够帮你解决ios – UITableView和tvOS的新方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)