[Solved] Difference between all java life cycles

http://maven.apache.org/ref/3.5.0/maven-core/lifecycles.html lists 3 lifecycles: default (briefly, this is compile -> test -> package (jar/war/ear/…) -> install -> verify -> deploy) clean (just clean) site (generates project documentation and reports) solved Difference between all java life cycles

[Solved] application life cycle issue

I solved this problem, just overrides the UINavigationBar & in LayoutSubViews set the height of navigationBar. @implementation UINavigationBar (customNAvigBar) – (void)layoutSubviews { [self setFrame:CGRectMake(0, 0, 320, 55)]; } @end that means whenever i draws the navigationBar it calls automatically & sets the height. solved application life cycle issue