TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Apache 2 |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
ITWLoadingPanel is a class for adding a download info panel, made at Intotheweb
ITWLoadingPanel work with both iPad and iPhone in any orientation.
Show it:
[ITWLoadingPanel showPanelInView:self.view title:@"Title" cancelTitle:@"Cancel"];
Hide it:
[ITWLoadingPanel hidePanel];
Subclass ITWLoadingPanel and do customization inside awakeFromNib:
- (void)awakeFromNib {
[super awakeFromNib];
self.backgroundColor = [UIColor redColor];
[self.cancelBtn setBackgroundImage:image forState:state];
self.cancelLabel.textColor = [UIColor yellowColor];
self.titleLabel.textColor = [UIColor blackColor];
}
ITWLoadingPanel is fully compatible out of box with both ARC and non-ARC project.