Activity indicator UIActivityIndicatorView, uiactivityindicator

Source: Internet
Author: User

Activity indicator UIActivityIndicatorView, uiactivityindicator
The activity indicator UIActivityIndicatorView informs the user that an operation is in progress. 1. Create

UIActivityIndicatorView * activityIndicatorView = [[UIActivityIndicatorView alloc] initWithFrame: CGRectMake (200,200, 30, 30)];

2. attribute settings

ActivityIndicatorView. activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;

ActivityIndicatorView. backgroundColor = [UIColor yellowColor];

/**

The system provides three unique styles

UIActivityIndicatorViewStyleWhiteLarge large white indicator

UIActivityIndicatorViewStyleWhite standard size white indicator <default style>

UIActivityIndicatorViewStyleGray gray indicator for white background

The hidesWhenStoped attribute is set to YES automatically hidden after the indicator is stopped. YES by default

**/

3. Display

[Self. view addSubview: activityIndicatorView];

4. Animation

[ActivityIndicatorView startAnimating]; // start

[ActivityIndicatorView stopAnimating]; // stop

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.