菜鸟教程小白 发表于 2022-12-12 22:47:25

iphone - 格式说明符


                                            <p><p>我正在使用 <a href="https://code.google.com/r/gaoyijun-plot/source/browse/UIColor-Expanded.m" rel="noreferrer noopener nofollow">this code</a>来自一个男人</p>

<p>在这段代码的中间,我们有</p>

<pre><code>- (NSString *)hexStringFromColor {
      return ;
}
</code></pre>

<p>这在 Xcode 4.4 之前工作正常。现在,我看到了这个错误:
<strong>format 指定类型 unsigned int 但参数的类型为 UInt32(又名 unsigned long)。</strong></p>

<p>为什么 Xcode 在 4.4 中会出现问题,但之前没有?我应该使用什么说明符? </p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>由于 <code>rgbHex</code> 似乎是一个无符号长整数,因此正确的格式说明符是 <code>@"%0.6lX"</code> 其中 <code>l</code> 代表 <code>长</code>.</p>

<p> <a href="http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html#//apple_ref/doc/uid/TP40004265-SW1" rel="noreferrer noopener nofollow">List of iOS String Format Specifiers</a> .</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 格式说明符,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12427886/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12427886/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 格式说明符