菜鸟教程小白 发表于 2022-12-12 10:08:36

ios - 添加图像的 NSArray 后出现问题


                                            <p><p>我的应用程序有点问题,对这种事情不熟悉,我有点难以弄清楚发生了什么。</p>

<p>我遇到的错误如下</p>

<ul>
<li><p>线程 1:EXC_BAD_ACCESS(代码=exc_I386_GPFLT)</p></li>
<li><p>隐式转换会丢失整数精度:“NSUInterger”(又名 unsigned long)到“u_int32”(又名“unsigned int”)**已解决*</p></li>
</ul>

<p>第一个不显示为红色或黄色错误,它只是我的部分代码下的贪婪文本,在下面的“图 1”中显示</p>

<p>第二部分是数组中的黄色错误,用于选择随机图像显示在<code>UIImageView</code>(图2)</p>

<p><strong>图 1</strong></p>

<pre><code> NSArray *imageNameArray = [ initWithObjects:@&#34;toppipestyleone.png&#34;, &#34;toppipestyletwo.png&#34;, &#34;toppipestylethree.png&#34;, &#34;toppipestylefour.png&#34;, &#34;toppipestylefive.png&#34;, nil];
</code></pre>

<p>这在我放置 <code>UIImageView</code> 的方法中,我在这个方法中也有代码告诉 <code>UIImageView</code> 从屏幕的右到左滚动,我会在“图3”中发布我的整个方法</p>

<p><strong>图2</strong></p>

<pre><code>PipeTop.image = )]];
</code></pre>

<p><strong>图 3</strong></p>

<pre><code>-(void)PlacePipe{



    NSArray *imageNameArray = [ initWithObjects:@&#34;toppipestyleone.png&#34;, &#34;toppipestyletwo.png&#34;, &#34;toppipestylethree.png&#34;, &#34;toppipestylefour.png&#34;, &#34;toppipestylefive.png&#34;, nil];

    PipeTop.image = )]];


    RandomTopPipePosition = arc4random() %350;
    RandomTopPipePosition = RandomTopPipePosition - 228;
    RandomBottomPipePosition = RandomTopPipePosition + 660;

    PipeTop.center = CGPointMake(340-10, RandomTopPipePosition);
    randomImagebottom.center = CGPointMake(340-10, RandomBottomPipePosition);


}
</code></pre>

<p>我认为第二个错误与 32 位和 64 位设备有关,但我无法找到针对我的确切问题的实际解决方案我读到的大多数问题都是关于人们使用 <code>NSZombies</code>?我不太确定那是什么。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><h1>1</h1>

<p>!真正的错误:来自 kirsteins:
"只有第一个数组对象是 NSString @"toppipestyleone.png",其他都是 c 字符串字面量。你应该在它们前面加上 @ 来组成 NSString 字面量。"</p>

<p>他/她删除了他们的答案,尽管它是正确的......</p>

<pre><code>NSArray *imageNameArray = [ initWithObjects:@&#34;toppipestyleone.png&#34;, @&#34;toppipestyletwo.png&#34;, @&#34;toppipestylethree.png&#34;, @&#34;toppipestylefour.png&#34;, @&#34;toppipestylefive.png&#34;, nil];
</code></pre>

<h1>2</h1>

<p>数组从零开始,count-1 是最后一个索引。关于警告。转换它:</p>

<p>所以:</p>

<pre><code>NSUInteger index = (NSUInteger)arc4random_uniform((int)-1);
PipeTop.image = ];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 添加图像的 NSArray 后出现问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23977925/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23977925/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 添加图像的 NSArray 后出现问题