關於自定義UITableViewCell的一個問題。xib文件和自定義構造函數的自定義UITableViewCell
我將有一個UICustomTableViewCell與xib文件來設計這個單元格。
當我創建我的手機我會還使用自定義構造函數傳遞一些參數。例如:
initWithMyParamterA:(NSString*) aParameterA andParameterB:(NSString*) aParameterB;
我寧願不使用的屬性來傳遞這個參數。
所以,我怎麼能一起實現這個構造loadNibName
(加載XIB文件)和默認構造函數:
initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
我怎麼能混合使用這些? :)