- (void)someMethod
{
BOOL isRightToLeft = ([UIApplication sharedApplication].userInterfaceLayoutDirection == UIUserInterfaceLayoutDirectionRightToLeft)
}
This causes exc bad access. I'm thinking its because its not thread safe and its called many times. What are the rules in using uiapplication sharedApplication? Thanks!