iOS 中tableview cell點選取消選中效果
核心程式碼 :
1,先在建立cell的代理方法中:
// cell.selectionStyle = UITableViewCellSelectionStyleNone;
2,在點選cell的代理方法中:
//取消選中效果
[tableView deselectRowAtIndexPath:indexPath animated:NO];
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
ShopRefundListCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ShopRefundListCell" forIndexPath:indexPath];
// cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.shopRefundModel = _queryResultArr[indexPath.row];
return cell;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
NSLog(@"點選了。。");
//取消選中效果
[tableView deselectRowAtIndexPath:indexPath animated:NO];
ShopRefundDetailVC *query = [ShopRefundDetailVC new];
ShopRefundModel *model = _queryResultArr[indexPath.row];
query.shopRefundModel = model;
[self.navigationController pushViewController:query animated:YES];
}
相關文章
- (iOS)點選cell推出現新介面iOS
- UWP 取消GridView、ListView滑鼠選中、懸停效果View
- C# WinForm 取消DataGridView的預設選中Cell 使其不反藍C#ORMView
- 【iOS開發】解決UITableview中選中Cell後,Cell複用導致選中狀態消失、應用閃退的問題iOSUIView
- 操作選中cell 所有cell操作相同情況下
- iOS cell找對應的tableViewiOSView
- 點選文字框實現文字框內容選中效果
- iOS之移動中變化的cell(cell逐漸變大效果)iOS
- 使用jQuery實現的取消radio按鈕選中效果jQuery
- iOS 中 cell的用法iOS
- IOS多型別Cell的tableView實現iOS多型型別View
- iOS 自定義tableView Cell、高度自適應iOSView
- iOS 實現點選微信頭像效果iOS
- iOS初級開發學習筆記:tablevView中,點選cell後下部彈出下級列表,需實現cell高變化iOS筆記View
- iOS tableView中的MVC、MVVMiOSViewMVCMVVM
- js核取方塊全選和取消全選效果JS
- JavaScript 核取方塊全選和取消全選效果JavaScript
- echarts 柱狀圖的選中模式實現-被選中變色和再次選中為取消變色Echarts模式
- 針對IOS頁面縮放,需要點選兩次才能選中iOS
- 選中和取消選中核取方塊實現背景變色和取消變色
- jquerycheckbox核取方塊多次點選判斷選中狀態,以及全選/取消的程式碼示例jQuery
- 【Objective-C】解決輕拍手勢事件與TableView的Cell點選事件衝突的問題Object事件View
- JavaScript實現單擊全選 ,再次點選取消全選JavaScript
- iOS 點選UITableViewCell上的控制元件獲取對應的celliOSUIView控制元件
- 淺談UITableView內Cell的選中細節過程UIView
- tableView 組頭 和 cellView
- 最簡單的可取消多選效果(以從水果籃中挑選水果為例)【jsDEMO】JS
- javascript checkbox核取方塊全選和取消全選效果JavaScript
- RecyclerView中item點選事件View事件
- iOS 相簿選中多張圖片iOS
- 選中select下拉選單option項實現提交效果
- 實現外賣選餐時兩級 tableView 聯動效果View
- jquery table下的核取方塊選中、取消jQuery
- iOS cell中webview自適應高度iOSWebView
- Input元件無點選效果元件
- Android Button 點選效果Android
- Item點選水波紋效果
- 點選Cell控制UITableViewCell的展開及關閉UIView