Swift 如何取得 tableView 上按鈕所在的 index 並轉換頁面

使用 closure 取得 tableView 上的按鈕並轉換頁面

首先自訂 cell

因為在自訂 cell 上的按鈕無法 performSegue 也無法取得 index

所以宣告一個 index 和一個傳入整數的 closure

再來到 cellForRowAt 裡宣告 cell 的型別是自訂的 cell

把 indexPath 傳給自訂 cell 裡的 index

接著呼叫 cell 裡的 closure 取得 index 並選換頁面

這樣就可以輕鬆解決從 tableView 上的按鈕轉換頁面及取得 index 囉!

--

--