程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> xcode-關於圖片的數組使用問題

xcode-關於圖片的數組使用問題

編輯:編程綜合問答
關於圖片的數組使用問題

我為圖片編寫了一個數組,把圖片都放在數組裡面然後檢查其他圖片有沒有這個數組裡面重復的。
我這樣寫的代碼:

NSMutableArray *platforms = [NSMutableArray array];
[platforms addObject:platform1];
[platforms addObject:platform2];
[platforms addObject:platform3];
[platforms addObject:platform4];
[platforms addObject:platform5];
[platforms addObject:platform6];
[platforms addObject:platform7];
[platforms addObject:platform8];
for (platforms in platforms) << code not working needs to do this for the amount of platforms in the array
{
    if(CGRectIntersectsRect(ball.frame, platforms.frame))
    {

    }
}

但是沒達到我想要的功能。

有別的方法實現麼?謝謝

最佳回答:


 if ([platforms containsObject:@"platforms1"]) {
        NSLog(@"the object selection is contained in array");
    }
    else{
        NSLog(@"not contain");
    }

這就是看platforms這個數組裡面是不是有platforms1這個元素,采用著一種方法,變通一下就可以很好的解決你這個問題。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved