1.cell 上面點擊收藏按鈕事件,發生變化 。通過代理釋放出來。
- (void)bottomView:(BTProductListCellBottomView*)bottomView didClickLike:(BTProduct*)product;
- (void)likeBtnDidClick
{
if([self.delegaterespondsToSelector:@selector(bottomView:didClickLike:)]) {
[self.delegatebottomView:self ?didClickLike:self.product];
}
}
2.cell間距
- (void)setFrame:(CGRect)frame
{
frame.origin.y+=10;//整體向下?移動10
frame.size.height-=10;//間隔為10
[supersetFrame:frame];
}