iOS performSelectorOnMainThread with multiple arguments
I would like to perform a selector on the main thread from another thread, but the selector has multiple arguments, similar to this: -(void) doSomethingWith:(int) a b:(float)b c:(float)c d:(float)d e:(float)e { //... } How can I get this working with performSelectorOnMainThread: withObject: waitUntilDone: ? EDIT I would like to explain why i need this. I'm working with UIImageViews on the main thread, and I make the calculations for them on another thread. I use a lot of calculations so if i make everything on the main thread, the app lags. I know that UI elements can only be manipulated on