Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
App crashes after authentication Twitter using Sharekit
In our App we are using ShareKit to publish something on Facebook and Twitter. Facebook works perfectly, only there are some problems with Twitter.
The first time you want to send something using Twitter, you need to authenticate the app. This process also works fine only when it's done it should return to the screen to post on Twitter. But at this point the app crashes because it can't find the UIViewController anymore... See the following error:
2011-06-22 17:18:29.355 asdf[189:707] *** Assertion failure in -[SHK showViewController:], /Users/nvt/Documents/asdf/Classes/Core/SHK.m:117 2011-06-22 17:18:29.460 asdf[189:707] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'ShareKit: Could not find a root view controller. You can assign one manually by calling [[SHK currentHelper] setRootViewController:YOURROOTVIEWCONTROLLER].'
It seems that somehow Sharekit loses the handle on the UIViewController. I tried fixing it by adding:
[SHK setRootViewController:self];
To the ViewDidLoad and ViewWillAppear methods, but this didn't work. Anyone who encountered the same problem, or have an idea to fix this? Although the app crashes the authentication works, because the next time you want to post something on Twitter it does work. So it only crashes once during the first authentication...