How to display activity indicator in middle of the iphone screen?

前端 未结 15 1026
盖世英雄少女心
盖世英雄少女心 2020-12-22 22:43

When we draw the image, we want to display the activity indicator. Can anyone help us?

15条回答
  •  北海茫月
    2020-12-22 22:50

    Hope this will work:

    // create activity indicator 
    UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] 
        initWithFrame:CGRectMake(0.0f, 0.0f, 20.0f, 20.0f)];
    [activityIndicator setActivityIndicatorViewStyle:UIActivityIndicatorViewStyleWhite];
    
    ...
     [self.view addSubview:activityIndicator];
    // release it
    [activityIndicator release];
    

提交回复
热议问题