如何在QuickDialog项目中修复此构建错误?

时间:2012-04-04 15:38:14

标签: objective-c ios quickdialog

我打算在我的项目中使用QuickDailog,我从github here克隆了该项目。

我正在尝试运行示例,但是当我构建项目时,我得到了以下错误

file:///QuickDialog/quickdialog/QuickDialogTableView.m: 
error: Semantic Issue: Second   argument to 'va_arg' is 
of non-POD type 'QElement *'

这是导致此错误的代码段。

- (void)reloadCellForElements:(QElement *)firstElement, ... {
    va_list args;
    va_start(args, firstElement);
    NSMutableArray *indexes = [[NSMutableArray alloc] init];
    QElement * element = firstElement;
    while (element != nil) {
        [indexes addObject:[self indexForElement:element]];

        //Below line generates the error
        element = va_arg(args, QElement *);
    }
    [self reloadRowsAtIndexPaths:indexes withRowAnimation:UITableViewRowAnimationNone];

    va_end(args);
}

有任何修复错误的建议吗?

1 个答案:

答案 0 :(得分:0)

你怎么称呼这种方法?你打电话给什么对象?您是否发送了一个空终止的对象列表?

我无法重现这个问题,但谷歌搜索我发现了这个:

http://builderror.com/article/47/Second-argument-to-vaarg-is-of-non-POD-type

您是否可以尝试使用该解决方法,看看它是否解决了这个问题?