ITWLoadingPanel 1.0.1

ITWLoadingPanel 1.0.1

TestsTested
LangLanguage Obj-CObjective C
License Apache 2
ReleasedLast Release Dec 2014

Maintained by Unclaimed.



  • By
  • Bruno Wernimont

ITWLoadingPanel is a class for adding a download info panel, made at Intotheweb

Screenshot

Compatibility

ITWLoadingPanel work with both iPad and iPhone in any orientation.

How to use it

Show it:

[ITWLoadingPanel showPanelInView:self.view title:@"Title" cancelTitle:@"Cancel"];

Hide it:

[ITWLoadingPanel  hidePanel];

How to customize it

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];
}

ARC

ITWLoadingPanel is fully compatible out of box with both ARC and non-ARC project.