tableView Cell 오른쪽으로 밀어 버튼 등을 표시
3843 단어 Swift
이번 내용
코드와 간략한 설명
func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {}
를 사용하십시오. func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let rightSlideMoves = { () -> [UIContextualAction] in
let slideActionArray = [UIContextualAction(style: .normal, title: "01", handler: { _, _, _ in
print("右のボタン01が押されました")}),
UIContextualAction(style: .normal, title: "02", handler: { _, _, _ in
print("右のボタン02が押されました")})]
return slideActionArray
}()
rightSlideMoves[0].backgroundColor = .systemIndigo
rightSlideMoves[1].backgroundColor = .systemBlue
return UISwipeActionsConfiguration(actions: rightSlideMoves)
}
끝
지적, 질문 등 있으면, 코멘트까지 부탁드립니다.
Reference
이 문제에 관하여(tableView Cell 오른쪽으로 밀어 버튼 등을 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/HiroUrata/items/5a51c44502a25ea60699
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(tableView Cell 오른쪽으로 밀어 버튼 등을 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/HiroUrata/items/5a51c44502a25ea60699텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)