点攒

  1. #import "CatZanButton"  
  2.   
  3. CatZanButton *zanBtn=[[CatZanButton alloc] initWithFrame:CGRectMake(005050) zanImage:[UIImage imageNamed:@"Zan"] unZanImage:[UIImage imageNamed:@"UnZan"]];  
  4. [zanBtn setCenter:self.view.center];  
  5. [self.view addSubview:zanBtn];  
  6.   
  7. [zanBtn setClickHandler:^(CatZanButton *zanButton) {  
  8.   if (zanButton.isZan) {  
  9.     //Do something  
  10.   }else{  
  11.     //Do something  
  12.   }  
  13. }];  

你可能感兴趣的:(点攒)