- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
if(self.model.allContestantImages.allKeys.count > 0 && clearArrayContent.count > 0)
{
while (self.model.allContestantImages[topMemberId] == nil ||
self.model.allContestantImages[bottomMemberId] == nil )
{
contestIndex = (arc4random() % clearArrayContent.count); // <---------- HERE
dictContent = clearArrayContent[contestIndex];
topMemberId = [dictContent[@"top_member_id"] knzIdentifier];
bottomMemberId = [dictContent[@"bottom_member_id"] knzIdentifier];
}
}
krypt 17.01.2014 11:44 # +1
Писал я как-то явный гк вида a[b[c[d]]], который выносил мозг при чтении. А там был всего лишь вывод в случайном порядке результатов жеребьёвки...
Dmitriy 17.01.2014 15:51 # 0
guest 28.01.2014 10:24 # 0
guest 07.02.2014 14:55 # 0
pr0gl 01.12.2014 22:35 # 0
https://developer.apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSArray_Class/index.html#//apple_ref/occ/instp/NSArray/count
>>@property(readonly) NSUInteger count