廢話不多說,直接上**:
/**
* tableviewcell切割線左側置頂 < 1 >
*/-(void)viewdidlayoutsubviews
if ([_tableview respondstoselector:@selector(setlayoutmargins:)])
}
/**
* tableviewcell切割線左側置頂<2>
*/-(void)tableview:(uitableview *)tableview willdisplaycell:(uitableviewcell *)cell forrowatindexpath:(nsindexpath *)indexpath
if ([cell respondstoselector:@selector(setlayoutmargins:)])
}
在tableview的xib中僅僅是找到了 setseparatorinsets 設定了,在cell中的xib中也找到相同設定了。可是沒有出效果 。
難道在xib中也應該找到setlayoutmargins?可是沒有找到。哪位大神看到了是否能給個指點。
iOS開發系列 cell分割線置頂
廢話不多說,直接上 tableviewcell分割線左側置頂 1 void viewdidlayoutsubviews if tableview respondstoselector selector setlayoutmargins tableviewcell分割線左側置頂 2 void tabl...
IOS 自定義cell 分割線不完整
第一次進去的時候,發現1 6 這個cell右邊沒有分割線,而且這個1 6的cell 不能選中,影響事件。但是當上下滑動後,它會出來,完全正常。折騰了 大半天,找到原因 注釋掉自定義cell類裡的 void setframe cgrect frame 方法,ios7 就好了。implementatio...
iOS開發系列
ios開發系列 ui 自定義tableview 本章實現效果 我們使用mvc架構來實現自定義tableview,具體的mvc介紹請自行,在本章中不作為主要內容講解。model層 datasource.h import inte ce datasource nsobject nsarray getus...