短視訊app開發,左滑刪除或長按彈出刪除選擇框
短視訊app開發,左滑刪除或長按彈出刪除選擇框
一、 左滑刪除
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { return YES; } - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITableViewCellEditingStyleDelete) { [dataArray removeObjectAtIndex:indexPath.row]; // Delete the row from the data source. [testTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; } else if (editingStyle == UITableViewCellEditingStyleInsert) { // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view. } } - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{ return @"下載"; }
二、長按手勢
新增1秒手勢 UILongPressGestureRecognizer * longPressGr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressToDo:)]; longPressGr.minimumPressDuration = 1.0; [self.tableView addGestureRecognizer:longPressGr]; [longPressGr release];
響應長按事件列印行:
-(void)longPressToDo:(UILongPressGestureRecognizer *)gesture { if(gesture.state == UIGestureRecognizerStateBegan) { CGPoint point = [gesture locationInView:self.tableView]; NSIndexPath * indexPath = [self.tableView indexPathForRowAtPoint:point]; NSlog(@"%d",indexPath.row); if(indexPath == nil) return ; //add your code here } }
以上就是 短視訊app開發,左滑刪除或長按彈出刪除選擇框,更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2905563/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 短視訊app製作,實現訊息列表的左滑刪除或長按刪除APP
- 點選刪除按鈕彈出是否刪除提示框
- 短視訊系統,長按側滑實現刪除的按鈕
- vue 左滑刪除功能Vue
- php短視訊原始碼,向左滑動顯示刪除按鈕PHP原始碼
- 微信小程式左滑刪除功能開發案例微信小程式
- Vue 仿QQ左滑刪除元件Vue元件
- iOS開發之tableView左滑刪除的兩種方法iOSView
- RecyclerView 梳理:點選&長按事件、分割線、拖曳排序、滑動刪除View事件排序
- 小程式 — 實現左滑刪除效果(列表)③
- 安卓開發:listview長按進入多選刪除操作安卓View
- 直播軟體app開發,刪除主頁搜尋框APP
- 短視訊系統原始碼,點選選擇框,底部彈出可以選擇的選項原始碼
- layui前端選單構建-批量刪除-彈框填寫-樹狀選單-樹狀下拉框選擇treeSelectUI前端
- 短視訊app開發,長按將視訊儲存到相簿APP
- jQuery點選按鈕刪除div元素jQuery
- wepy 滑動刪除功能
- 原生js多選框選中排序及刪除JS排序
- iOS 多選刪除(附tableViewTips及單選刪除)iOSView
- 小程式實現長按刪除圖片
- JavaScript新增一個文字框並帶有刪除按鈕JavaScript
- 短視訊平臺開發,點選輸入框時自動彈出軟鍵盤
- 短視訊軟體開發,按鈕側滑顯示各個選項
- layer彈框刪除ztree節點非阻塞問題解決
- WPF中的ListBox怎麼新增刪除按鈕並刪除所在行
- 刪除按鈕點選後的虛線輪廓
- 搭建直播平臺,Android ListView 長按刪除列表項AndroidView
- 直播原始碼網站,實現對話方塊的左滑動刪除原始碼網站
- 短視訊平臺原始碼,長按視訊、對話方塊彈出操作可選按鈕原始碼
- win10新增或刪除程式在哪 win10系統怎麼開啟新增或刪除程式Win10
- 做短視訊app開發,伺服器的選擇很重要APP伺服器
- 短視訊直播系統,選擇選項時,點選出現下拉框
- linux 下vim中關於刪除某段,某行,或全部刪除的命令Linux
- php(js)批量刪除/單個刪除PHPJS
- 直播商城平臺,購物車長按右滑出現刪除按鈕
- 短視訊商城系統,系統提示框、確認框、點選空白關閉彈出框
- 關於刪除itunes connect的appAPP
- 工作293:調節刪除順序刪除