iT邦幫忙

2023 iThome 鐵人賽

DAY 10
0
Mobile Development

iOS軟體開發系列 第 10

TableView左滑右滑介紹

  • 分享至 

  • xImage
  •  

要了解siwft裡的TableView要怎麼右滑刪除可以到apple官方文件裡找網址在這
https://developer.apple.com/documentation/uikit/uitableviewdelegate/2902367-tableview
透過文件的敘述我們可以了解程式碼中indexPath代表的是本身所滑動的所以我們將程式打好後我們是右滑哪一個cell程式本身就會透過indexPath來定位

    optional func tableView(
        _ tableView: UITableView,
        trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath
    ) -> UISwipeActionsConfiguration?
    

再來我們來看左滑的官方文件在哪
https://developer.apple.com/documentation/uikit/uitableviewdelegate/2902366-tableview

optional func tableView(
    _ tableView: UITableView,
    leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath
) -> UISwipeActionsConfiguration?

我相信這樣大家右滑左滑就有基礎的了解了


上一篇
留言板基本介紹
下一篇
PickerView介紹
系列文
iOS軟體開發30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言