1. 程式人生 > >一個最簡單的cell按鈕點擊回調

一個最簡單的cell按鈕點擊回調

eight property sin font 簡單的 cell 舉例 定義 ont

在cell.h定義 @property(nonatomic,strong)void(^pushType)(NSInteger); 在cell.m按鈕點擊時 _pushType(1);(舉例)
在用到cell的tableView中 cell.pushType=^(NSInteger index){
if(index==1){
... } };

一個最簡單的cell按鈕點擊回調