打开 TableView 并选择行
Posted
技术标签:
【中文标题】打开 TableView 并选择行【英文标题】:Open TableView and Select Row 【发布时间】:2017-09-04 12:19:01 【问题描述】:我的应用有一个今天的小部件,它有一个UITableView
。每当用户点击一行时,我想打开主 ios 应用程序,使用 UITableView
. 导航到 UIViewController
,然后选择对应的单元格。
我知道要打开应用程序,我会这样做:
let url = URL(string: "ProjectName://")
extensionContext?.open(url!, completionHandler: nil)
要选择行,我会这样做:
tableView.selectRowAtIndexPath(index, animated: true, scrollPosition: UITableViewScrollPosition.middle)
但是,我如何通过 Today Widget 一起完成这一切?
【问题讨论】:
【参考方案1】:将您的索引转换为字符串并附加您的自定义 url 方案
ProjectName://indexPath.row 作为字符串
最终基于索引
项目名称://1 项目名称://2
然后使用附加值重定向到您的主应用
let url = URL(string: "ProjectName://1")
extensionContext?.open(url!, completionHandler: nil)
它将调用您的主应用程序委托,您可以通过转换回 Int
来获取您的索引 func application(_ application: UIApplication, open urls: URL, sourceApplication: String?, annotation: Any) -> Bool
let obj = urls.absoluteString.components(separatedBy: "://")[1]
//Here convert string to object back to int
NotificationCenter.default.post(name:"selectrow", object: obj)
return true
在您的 viewcontroller 中观察它并将其转换为 Int
在 viewDidLoad
NotificationCenter.default.addObserver(self, selector: #selector(ViewController.navigateToPushnotificationScreen), name: "selectrow", object: nil)
然后添加这个方法
func navigateToPushnotificationScreen(notification : NSNotification)
let index = notification.object as! String
//Here convert your string object to Int, and select your tableview
【讨论】:
以上是关于打开 TableView 并选择行的主要内容,如果未能解决你的问题,请参考以下文章
Swift:tableView 行的高度,其 tableView 单元格具有动态行数的嵌套 tableView