You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use either of these methods , in initialisation Phase: -(id)initWithNavBarItems:(NSArray *)items navBarBackground:(UIColor *)background controllers:(NSArray *)controllers showPageControl:(BOOL)addPageControl;
or afterwards to add view controllers: -(void)addViewControllers:(UIViewController *) controller needToRefresh:(BOOL) refresh;
How can I set this to show my view controllers instead of showing the UIColors
I was thinking that I would be able to do it in the views NSArray
NSArray *titles = @[[[UIImageView alloc] initWithImage:img1], [[UIImageView alloc] initWithImage:img2], [[UIImageView alloc] initWithImage:img3]];
NSArray *views = @[[self viewWithBackground:orange], [self viewWithBackground:[UIColor yellowColor]], [self viewWithBackground:gray]];
The text was updated successfully, but these errors were encountered: