Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

im sure this is completely simple , infact i'm sure i have already seen the code for this somewhere , i just cant remember for the life of me where.

all i want to do is add the little swirl image thing whilst loading. can anyone point me in the right direction

Thanks Richard

share|improve this question

2 Answers

up vote 5 down vote accepted

You want a UIActivityIndicatorView

UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc]initWithFrame:CGRectMake(135,140,50,50)];
[spinner startAnimating];
[self.view addSubview:spinner];
[spinner release];

You will probably want to hold on to a pointer to it though so you can remove it later.

share|improve this answer

You must be looking for standard UIActivityIndicatorView control.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.