TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Mar 2016 |
Maintained by Moath Othman.
simple-to-use iOS 7 Appstore like button
Here we should set the titles,finishedDownloadingButtonTitle, and buttonDelegate !!!.
MOStoreButton*storeButton1 =[[MOStoreButton alloc]initWithFrame:CGRectMake(100, 260,80, 40) andColor:[UIColor blueColor]];
storeButton1.buttonDelegate=self;
storeButton1.titleLabel.font =[UIFont systemFontOfSize:17];
storeButton1.finishedDownloadingButtonTitle =@"Open";
[storeButton1 setTitles:@[@"free",@"INSTALL"]];
[self.view addSubview:storeButton1];
We Care here about the currentIndex which determine the state of the button transition, see the demo for more clarification
-(void)storeButtonFired:(MOStoreButton *)button{
NSLog(@"click %i",button.currentIndex);
}