Cory Rylan

My name is , Google Developer Expert, Speaker, Software Developer. Building Design Systems and Web Components.

Follow @coryrylan
Cory Rylan Blog

IOS Journey Load Animation

Cory Rylan

- less than a minute

This following example is a small snippet of code to create a small loading animation for your IOS apps in Objective C.

UIActivityIndicatorView *loadAnimation = [[UIActivityIndicatorView alloc]

initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];

loadAnimation.center = CGPointMake(160, 220);

loadAnimation.hidesWhenStopped = YES;

[self.view addSubview:loadAnimation];

[loadAnimation startAnimating];
Twitter Facebook LinkedIn Email
 

No spam. Short occasional updates on Web Development articles, videos, and new courses in your inbox.

Related Posts

Cory Rylan Blog

IOS Character Counter

A short code example of how to make a character counter for IOS in Objective C.

Read Article
Cory Rylan Blog

IOS Journey the Observer

A short code example of how to use the observer object for IOS in Objective C.

Read Article
Cory Rylan Blog

IOS Journey Load Multi-Threading

A short code example of how to use multi-threading for IOS in Objective C.

Read Article