7

我想更改 SLComposeServiceViewController 中发布按钮的标题。我设法得到了 UIButton:

NSArray* subviews =[self.navigationController.navigationBar subviews];
UIButton* postButton =[subviews lastObject];

我试图这样设置标题:

[postButton setTitle:@"Save" forState:UIControlStateNormal];

但标题没有改变。

谁能帮我这个?

我在 iPad 上看到了 Evernote 的共享扩展,它看起来像这样: 在此处输入图像描述

更新

我的解决方案:

我找到了我的问题的解决方案,我删除了原始导航栏并创建了自定义导航栏。

我有两个导航栏:1.带有“取消”\“保存”按钮 2.带有“返回”按钮

我在导航到其他视图控制器时更改它们(在我的情况下,我需要上传文件,用户需要从列表中选择位置)

注意:如果您不实施configurationItems,您只需要第一个导航栏。(只需调用设置自定义导航栏viewDidAppear

所以我的代码在这里:

@property (strong, nonatomic) UINavigationBar *customNavBar;

-(void) viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];  
    self.customNavBar = [[UINavigationBar alloc] initWithFrame:self.navigationController.navigationBar.bounds];
    [self.navigationController.navigationBar removeFromSuperview];
    [self.navigationController.view addSubview:self.customNavBar];
    [self setCancelSaveNavigationItem];
}

setCancelSaveNavigationItem--> 从 shareViewController 的 viewDidAppear 调用

-(void)setCancelSaveNavigationItem
{
    UINavigationItem *newItem = [[UINavigationItem alloc] init];
    UIBarButtonItem *cancelBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Cancel",nil)  style:UIBarButtonItemStylePlain target:self action:@selector(cancelButtonTapped:)];
    UIBarButtonItem *saveBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Done",nil)  style:UIBarButtonItemStyleDone target:self action:@selector(saveButtonTapped:)];
    newItem.leftBarButtonItem = cancelBarButtonItem;
    newItem.rightBarButtonItem = saveBarButtonItem;
    [self.customNavBar setItems:@[newItem]];
    [self.navigationItem setBackBarButtonItem:cancelBarButtonItem];
    [self.navigationItem setRightBarButtonItem:saveBarButtonItem];
    if(self.item.value == nil){
        saveBarButtonItem.enabled = NO;
    }
}

setBackNavigationItem--> 在函数中调用configurationItems--> 在self.item.tapHandler函数中

-(void)setBackNavigationItem
{
    UINavigationItem *newItem = [[UINavigationItem alloc] init];
    UIBarButtonItem *selectBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Select",nil)  style:UIBarButtonItemStylePlain target:self action:@selector(selectButtonTapped:)];
    UIBarButtonItem *backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:[NSString stringWithFormat:@"❮ %@", NSLocalizedString(@"Back",nil)]  style:UIBarButtonItemStylePlain target:self action:@selector(backButtonTapped:)];
    newItem.leftBarButtonItem = backBarButtonItem;
    newItem.rightBarButtonItem = selectBarButtonItem;
    [self.customNavBar setItems:@[newItem]];
    [self.navigationItem setBackBarButtonItem:backBarButtonItem];
    [self.navigationItem setRightBarButtonItem:selectBarButtonItem];
}

轻按的手柄按钮:

- (void)backButtonTapped:(id)sender {
    if([self.navigationController.viewControllers count] ==2){
        [self setCancelSaveNavigationItem];
    }
    [self.navigationController popViewControllerAnimated:YES];
}

- (void)cancelButtonTapped:(id)sender {
    [self cancel];
}

- (void)selectButtonTapped:(id)sender {
    ...
    [self setCancelSaveNavigationItem];
    [self popConfigurationViewController];
}

- (void)saveButtonTapped:(id)sender {
    ...
    [self cancel];
}

它对我有用!!!

结果:

在此处输入图像描述

在此处输入图像描述

4

2 回答 2

13

简单地在viewDidAppear

self.navigationController?.navigationBar.topItem?.rightBarButtonItem?.title = "Save"
于 2017-07-10T04:17:36.677 回答
7

你的代码:

NSArray* subviews =[self.navigationController.navigationBar subviews];
UIButton* postButton =[subviews lastObject];

...真是个坏主意。它之所以有效,是因为发布按钮在subviews其中并且是数组中的最后一项。但是 的内容subviews是无证的,并且可能随时更改。此外,由于此按钮没有公共 API,因此完全有可能存在框架代码来阻止或覆盖对按钮文本的更改——因此,即使我们假设您拥有正确的 UI 元素,您仍然可能无法更改它.

Evernote 的 UI 几乎可以肯定是完全定制的设计,仅类似于SLComposeServiceViewController. 共享扩展不需要使用SLComposeServiceViewController,这只是为了方便。如果它不能满足您的需求,请自行设计。

更新:出于好奇,我解压了 Evernote IPA 并查看EvernoteShare.appexnm。没有对 的引用SLComposeServiceViewController,这证实 Evernote 没有在其扩展中使用该类。

于 2015-02-12T17:23:13.280 回答