在“ DraggableViewBackground.m”中更改一些代码

时间:2019-02-14 23:35:17

标签: arrays objective-c image

Github源URL:https://github.com/cwRichardKim/RKSwipeCards

因此,我需要在“ DraggableViewBackground.m”中更改一些代码。

我需要创建一个图像数组,而不是原始源代码中的文本数组。

库存部分:

$ bash grepopts.sh
+ GREP_OPTS=(-e "test this")
+ echo 'I want to test this.'
+ grep -e 'test this'
I want to test this.

我研究了图像数组的各种实现,但仍然遇到一些我无法解决的错误。

这是我为数组编辑的代码:

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        [super layoutSubviews];
        [self setupView];
        exampleCardLabels = [[NSArray alloc]initWithObjects:@"first",@"second",@"third",@"fourth",@"last", nil]; //%%% placeholder for card-specific information
        loadedCards = [[NSMutableArray alloc] init];
        allCards = [[NSMutableArray alloc] init];
        cardsLoadedIndex = 0;
        [self loadCards];
    }
    return self;
}

我返回“整数常量后缀'_quote'无效”

我将如何解决此问题,以将图像拉入阵列,然后为每张刷卡提供一张图像?

我更改了一些其他内容,但是只更改了实例名称,这些实例名称在相应的文件中已相应更改,因此构建仍然成功,但是我无法使图像数组正常工作。

请帮助!

谢谢。

0 个答案:

没有答案