菜鸟教程小白 发表于 2022-12-13 01:45:45

iphone - 在哪里可以找到 @max.intValue


                                            <p><p>我使用以下代码获取最大值:</p>

<pre><code> NSArray *allValues = @[ ,
                        ,
                        ,
                        ,
                        ];

int max = [ intValue];
int min = [ intValue];
</code></pre>

<p>但我有一个问题,什么文件可以告诉我 KeyPath 链接在哪里 @max.intValue
或@min.intValue.如果我知道我可以知道的关键路径做其他效果</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以在 <a href="http://developer.apple.com/library/ios/#documentation/cocoa/conceptual/KeyValueCoding/Articles/CollectionOperators.html#//apple_ref/doc/uid/20002176-BAJEAIEE" rel="noreferrer noopener nofollow">Key-Value Coding Programming Guide</a> 中找到此信息:</p>

<blockquote>
<p>@max</p>

<p>The @max operator compares the values of the property specified
by the key path to the right of the operator and returns the maximum
value found. The maximum value is determined using the compare: method
of the objects at the specified key path. The compared property
objects must support comparison with each other. If the value of the
right side of the key path is nil, it is ignored.</p>

<p>@min </p>

<p>The @min operator compares the values of the property specified
by the key path to the right of the operator and returns the minimum
value found. The minimum value is determined using the compare: method
of the objects at the specified key path. The compared property
objects must support comparison with each other. If the value of the
right side of the key path is nil, it is ignored.</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 在哪里可以找到 @max.intValue,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15611271/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15611271/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 在哪里可以找到 @max.intValue