Hello, I'm experiencing something strange and wondering if anyone else has come across this. After I successfully share to twitter via SHKTwitter, my UIView and/or UIImageView (which contains my background image) is getting shifted down by approx. 20 pixels (about the height of the statusbar). Has anyone run across this before?
This is the twitter button action...
Code:
- (IBAction)shareTwitterClick:(id)sender {
NSString *text = [NSString stringWithFormat:@"Some test string here"];
[SHK setRootViewController:self];
[SHKTwitter shareText:text];
}
On that view, I am not hiding the statusbar at all. The twitter button is on the UIView and not inside of an Actionsheet.