0

我一直在我当前的 react native 应用程序中使用 react-native-navigation 并且遇到了问题。我的应用程序上有一个导航栏,左侧按钮作为抽屉菜单的切换,右侧按钮是链接到我们公司网站的徽标。

导航栏中的标志设置如下:

icon: require('../logos/BB-Icon.png')

在 android 上查看应用程序时,我得到以下结果 ,如下所示

但是,在 iOS 上,我得到了这个.

我已经搜索了文档,似乎找不到任何可以像 Android 一样在 iOS 中将导航栏居中的内容。

环境:

  • React Native Navigation 版本:1.1.444
  • 反应原生版本:0.52.0
  • 设备信息:Android:运行 Android 8.0.0 的三星 Galaxy S9 // iOS:运行 iOS 11.3 的 iPhone X 模拟器
4

1 回答 1

0

在 2.17 中,您可以lib/ios/RNNUIBarButtonItem.m这样修改:

-(instancetype)init:(NSString*)buttonId withIcon:(UIImage*)iconImage {
    UIButton* button = [[UIButton alloc] init];
    [button addTarget:self action:@selector(onButtonPressed) forControlEvents:UIControlEventTouchUpInside];
    [button setImage:iconImage forState:UIControlStateNormal];
    [button setFrame:CGRectMake(0, 0, iconImage.size.width, iconImage.size.height)];
    self = [super initWithCustomView:button];
    self.buttonId = buttonId;
// Align left or right here.
    button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
    return self;
}

我不知道你是否可以在版本 1.x 中做类似的事情。希望这会有所帮助。

于 2019-04-19T18:05:09.133 回答