I'm using Apple's Page Control sample and my UIScrollview isn't smooth when scrolling. I'm thinking about using GCD. I believe that all my code is thread safe, except for my last line which is [self.scrollView addSubview:myView].

The docs that I read all mentions that UIKit is not thread safe, but the examples given are always related to setting values such as self.myLabel.text = @"some text".

Is addSubview thread safe?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

All interface manipulation should be done in main thread! In other case you'll probably would gain painful headache.

link|improve this answer
Thanks for confirming this. Y – user604352 Aug 4 '11 at 12:22
feedback

It is my understanding that this would not be thread-safe. To my knowledge, the only thing you can do with UIKit that is thread-safe is creating instances of UIImage (but not adding them to a view).

link|improve this answer
feedback

You should call all UIKit methods on the main thread, this includes -[UIView addSubview:].

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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