我有两种估计,一种是“预估”和一种“算术后”的,需要用我的直观块齐头。 我想随意执行。 我创造了众多数目,即0.33人。
NSNumber *w = [NSNumber numberWithUnsignedInt: 0];
NSNumber *x = [NSNumber numberWithUnsignedInt: 1];
NSNumber *y = [NSNumber numberWithUnsignedInt: 2];
NSNumber *z = [NSNumber numberWithUnsignedInt: 3];
NSArray *numbers = [[NSArray alloc] initWithObjects: w, x, y, z, nil];
I m using this category to arbitraryize the range.
[numbers shuffledArray];
接着,我还有一套用心,从理论上来说,我用来拿走数字,用在我的空洞中:
int ww = [[numbers objectAtIndex:0] integerValue];
int xx = [[numbers objectAtIndex:1] integerValue];
int yy = [[numbers objectAtIndex:2] integerValue];
int zz = [[numbers objectAtIndex:3] integerValue];
[UIView animateWithDuration:.85 delay:3 options:opts animations:[animations objectAtIndex:ww] completion:[completions objectAtIndex:ww]];
[UIView animateWithDuration:.85 delay:8 options:opts animations:[animations objectAtIndex:xx] completion:[completions objectAtIndex:xx]];
等等。 我只字不提“同意:[编号标注AtIndex:0]是因为汇编者正在扔下“不相容的点子,把发往NSUInteger (aka unsign int )类参数的转换类型,”我这样做了,我试图通过将原子弹打成未经签名的内装,但在那里没有uck。
法典没有给我留下任何错误,而且一切都只是罚款,但没有任何东西被随意抽取,而是按我把一切放在首位的顺序排列。 关于我会错在哪里的想法? 我曾尝试过其他随机化职能,似乎没有任何工作。