2012年8月2日

UITableView中的dequeueReusableCellWithIdentifier的方法

摘要: 在使用UITableView控件的时候,datasource的代理方法经常会使用到下面的方法来加载UITableView的数据显示- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{ staticNSString*CustomCellIdentifier =@"CustomCellIdentifier"; DiscountProductCell* cell= (DiscountProductCell*)[tableViewdeq 阅读全文

posted @ 2012-08-02 16:16 刚冲出起跑线的人 阅读(14123) 评论(0) 推荐(0) 编辑

UITableView加载自定义UITableViewCell

摘要: - (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{ staticNSString*CustomCellIdentifier =@"CustomCellIdentifier"; DiscountProductCell* cell= (DiscountProductCell*)[tableViewdequeueReusableCellWithIdentifier:CustomCellIdentifier]; if(cell ==n 阅读全文

posted @ 2012-08-02 15:32 刚冲出起跑线的人 阅读(1799) 评论(0) 推荐(0) 编辑

导航