Sourabh Kumbhar
Sourabh Kumbhar

Reputation: 1054

Cannot Animate Activity Indicator through Storyboard

I am actually using activity indicator in LaunchScreen
But cannot animate through storyboard using Attributes inspector.

Upvotes: 1

Views: 569

Answers (2)

BhargavR
BhargavR

Reputation: 1133

The LaunchScreen is a static image shown by the iOS until the application is launched. To show the activity indicator or in fact to show any UI changes after the application launch you need to add another viewcontroller which is shown as a first view controller with the same image in the background as a splash screen and add other UI components.

Upvotes: 2

Shehata Gamal
Shehata Gamal

Reputation: 100503

You can't do any animations with LaunchScreen storyboard vc as it's displayed statically when the app is launched , you need to create a splash vc , add the activtyIndicator to it then animate

Upvotes: 1

Related Questions