ios - mapkit 中 NSMutableArray 的多个注释
<p><p>我有一个从 ios 中的 sqlite db 填充的 mutablearray。我已经获得了正确加载和查看的注释。我的问题是如何编写一个循环来添加数组大小的注释。我已经尝试了以下代码并获取并显示数组中的最后一个条目</p>
<pre><code>NSMutableArray *annotations=[ init];
CLLocationCoordinate2D theCoordinate5;
MyAnnotation* myAnnotation5=[ init];
for (int i = 0; i < _getDBInfo.count; i++) {
dbInfo *entity = ;
NSNumber *numlat=[ initWithDouble:];
NSNumber *numlon=[ initWithDouble:];
NSLog(@"%d",);
la=;
lo=;
theCoordinate5.latitude=la;
theCoordinate5.longitude=lo;
myAnnotation5.coordinate=theCoordinate5;
myAnnotation5.title=;
myAnnotation5.subtitle=;
;
;
}
</code></pre>
<p>我想我的问题是如何根据数组中的计数创建并添加到 View 注释对象?</p>
<p>非常感谢任何帮助。</p>
<p>我是 iOS 和编程新手,所以请保持温和。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您只有一个 <code>myAnnotation5</code> 对象。当你设置它的 <code>coordinate</code>、<code>title</code> 等时,你是在为那个实例设置它,你碰巧已经多次添加到 <code>annotations</code> .因此,<code>annotations</code> 中的每个条目都将具有您设置的最后一组属性 - 因为 <code>annotations</code> 中的每个条目实际上都是 <em>same</em> 对象。</p >
<p>要解决这个问题,您需要在循环的每次迭代中重新创建 <code>myAnnotation5</code> 对象,即</p>
<pre><code>for (int i = 0; i < _getDBInfo.count; i++) {
MyAnnotation* myAnnotation5=[ init];
...
myAnnotation5.coordinate=theCoordinate5;
myAnnotation5.title=;
myAnnotation5.subtitle=;
...
;
}
</code></pre>
<p>两旁:</p>
<ol>
<li>我希望您使用 ARC 构建,否则您会左右泄漏内存。</li>
<li>由于 <code>MKMapView</code> 具有 <code>-annotations</code> 属性,您可能没有理由保留自己的 <code>annotations</code> 数组 - 只需保留引用即可到 <code>mapView</code>。</li>
</ol></p>
<p style="font-size: 20px;">关于ios - mapkit 中 NSMutableArray 的多个注释,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10587724/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10587724/
</a>
</p>
页:
[1]