I have the following piece of code:
UIActivityIndicatorView *av; -(void) createAndShowLoadingIndicator { av = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray] ; av.frame=CGRectMake(10, 10, 250, 250);
In MyViewController.m , I call with [self createAndShowLoadingIndicator]; and wonder why this is not visible !? I do not see errors. What is the problem, how to make it visible?
user529543
source share