0

我正在为应用程序编写自己的自定义警报视图。客户对警报类型消息有自己的外观/感觉。我读过子类UIAlertView化并不是一个好主意,所以我只是想使我正在使用的当前消息视图更加动态,以便我可以更多地重用它。

好的,我的问题。我正在窃取初始化UIAlertView以初始化我自己的自定义警报。

- (id)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATION;

UIAlertView这是从 Apple 的初始化程序中取出的。我的也一样,所以为什么不直接使用他们的 init。

我希望能够为 传递多个字符串otherButtonTitles,就像UIAlertView. 我的问题是,如何访问传入的字符串?

4

1 回答 1

1

我可能会将otherButtonTitles参数设为 NSArray 而不是 NSString。从那里您可以根据数组的计数动态生成其他按钮,并将所述按钮的标题设置为存储在数组当前索引中的 NSString。

编辑:我认为我在 UIAlertView.m 中找到了一些有希望的东西(不确定它是否真的来自 Apple),但它也将 otherButtonTitles 作为字符串。它使用 ava_list来存储 otherButtonTitles,然后将对象添加到包含所有按钮的可变数组中,包括索引 0 处的取消按钮(如果适用)。

https://github.com/BigZaphod/Chameleon/blob/master/UIKit/Classes/UIAlertView.m

这是一段摘录:

 if (otherButtonTitles) {
        [self addButtonWithTitle:otherButtonTitles];

        id buttonTitle = nil;
        va_list argumentList;
        va_start(argumentList, otherButtonTitles);

        while ((buttonTitle=(__bridge NSString *)va_arg(argumentList, void *))) {
            [self addButtonWithTitle:buttonTitle];
        }

        va_end(argumentList);
    }
于 2013-01-07T16:36:10.123 回答