I need to be able to remove a button from a view and add a different one. My code looks like this:
-(void)UpdatePromoBanner:(NSString*)value{ [button setTitl
You cannot update the UI using a secondary thread, whenever your thread is doing UI updates you must call the main thread.