我的应用程序支持英语和阿拉伯语。 interactivePopGestureRecognizer
使用英语时,即在刷卡从左至右正常工作,它会弹出的viewController。 但是,当我使用阿拉伯语,我已经改变了semanticContentAttribute
从右到左。
if([[[NSUserDefaults standardUserDefaults] objectForKey:@"LanguageCode"] isEqualToString:@"en"])
{
[[UIView appearance] setSemanticContentAttribute:UISemanticContentAttributeForceLeftToRight]; //View for English language
}
else
{
[[UIView appearance] setSemanticContentAttribute:UISemanticContentAttributeForceRightToLeft]; //mirror view for Arabic language
}
但interactivePopGestureRecogniser
仍然是左到右。 我怎样才能改变方向interactivePopGestureRecogniser
使得它支持阿拉伯语? 我想从右向左滑动,使用阿拉伯语弹出视图控制器。