<tfoot id='saBiV'></tfoot>

  • <i id='saBiV'><tr id='saBiV'><dt id='saBiV'><q id='saBiV'><span id='saBiV'><b id='saBiV'><form id='saBiV'><ins id='saBiV'></ins><ul id='saBiV'></ul><sub id='saBiV'></sub></form><legend id='saBiV'></legend><bdo id='saBiV'><pre id='saBiV'><center id='saBiV'></center></pre></bdo></b><th id='saBiV'></th></span></q></dt></tr></i><div id='saBiV'><tfoot id='saBiV'></tfoot><dl id='saBiV'><fieldset id='saBiV'></fieldset></dl></div>

    <small id='saBiV'></small><noframes id='saBiV'>

      <legend id='saBiV'><style id='saBiV'><dir id='saBiV'><q id='saBiV'></q></dir></style></legend>

      • <bdo id='saBiV'></bdo><ul id='saBiV'></ul>

      1. ClLocationCoordinate2D 的 NSMutableArray

        NSMutableArray of ClLocationCoordinate2D(ClLocationCoordinate2D 的 NSMutableArray)
        <tfoot id='T8yVf'></tfoot>
            <tbody id='T8yVf'></tbody>

          <i id='T8yVf'><tr id='T8yVf'><dt id='T8yVf'><q id='T8yVf'><span id='T8yVf'><b id='T8yVf'><form id='T8yVf'><ins id='T8yVf'></ins><ul id='T8yVf'></ul><sub id='T8yVf'></sub></form><legend id='T8yVf'></legend><bdo id='T8yVf'><pre id='T8yVf'><center id='T8yVf'></center></pre></bdo></b><th id='T8yVf'></th></span></q></dt></tr></i><div id='T8yVf'><tfoot id='T8yVf'></tfoot><dl id='T8yVf'><fieldset id='T8yVf'></fieldset></dl></div>
        • <legend id='T8yVf'><style id='T8yVf'><dir id='T8yVf'><q id='T8yVf'></q></dir></style></legend>
            <bdo id='T8yVf'></bdo><ul id='T8yVf'></ul>

                  <small id='T8yVf'></small><noframes id='T8yVf'>

                  本文介绍了ClLocationCoordinate2D 的 NSMutableArray的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试创建然后检索 CLLocationCoordinate2D 对象的数组,但由于某种原因,该数组始终为空.

                  I'm trying to create then retrieve an array of CLLocationCoordinate2D objects, but for some reason the array is always empty.

                  我有:

                  NSMutableArray *currentlyDisplayedTowers;
                  CLLocationCoordinate2D new_coordinate = { currentTowerLocation.latitude, currentTowerLocation.longitude };
                  [currentlyDisplayedTowers addObject:[NSData dataWithBytes:&new_coordinate length:sizeof(new_coordinate)] ];
                  

                  我也试过这个来添加数据:

                  I've also tried this for adding the data:

                  [currentlyDisplayedTowers addObject:[NSValue value:&new_coordinate withObjCType:@encode(struct CLLocationCoordinate2D)] ];
                  

                  无论哪种方式,[currentlyDisplayedTowers count] 总是返回零.有什么想法可能出了什么问题?

                  And either way, the [currentlyDisplayedTowers count] always returns zero. Any ideas what might be going wrong?

                  谢谢!

                  推荐答案

                  要留在对象领域,您可以创建 CLLocation 的实例并将它们添加到可变数组中.

                  To stay in object land, you could create instances of CLLocation and add those to the mutable array.

                  CLLocation *towerLocation = [[CLLocation alloc] initWithLatitude:lat longitude:lon];
                  [currentDisplayedTowers addObject:towerLocation];
                  

                  要从 CLLocation 中取回 CLLocationCoordinate 结构,请在对象上调用 coordinate.

                  To get the CLLocationCoordinate struct back from CLLocation, call coordinate on the object.

                  CLLocationCoordinate2D coord = [[currentDisplayedTowers lastObject] coordinate];
                  

                  这篇关于ClLocationCoordinate2D 的 NSMutableArray的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What values should I use for iOS boolean states?(我应该为 iOS 布尔状态使用什么值?)
                  How do I get NSJSONSerialization to output a boolean as true or false?(如何让 NSJSONSerialization 将布尔值输出为真或假?)
                  Is there any difference between bool, Boolean, and BOOL in Objective-C?(Objective-C 中的 bool、Boolean 和 BOOL 之间有什么区别吗?)
                  Convert String to Bool in Swift - via API or most Swift-like approach(在 Swift 中将 String 转换为 Bool - 通过 API 或大多数类似 Swift 的方法)
                  How can I find a number of True statements in an Array of Bools in Swift(如何在 Swift 的布尔数组中找到多个 True 语句)
                  In Objective-c, safe and good way to compare 2 BOOL values?(在 Objective-c 中,比较 2 个 BOOL 值的安全和好方法?)

                  <small id='PiMe2'></small><noframes id='PiMe2'>

                    <tbody id='PiMe2'></tbody>
                    <bdo id='PiMe2'></bdo><ul id='PiMe2'></ul>

                    • <tfoot id='PiMe2'></tfoot>
                      <legend id='PiMe2'><style id='PiMe2'><dir id='PiMe2'><q id='PiMe2'></q></dir></style></legend>
                      • <i id='PiMe2'><tr id='PiMe2'><dt id='PiMe2'><q id='PiMe2'><span id='PiMe2'><b id='PiMe2'><form id='PiMe2'><ins id='PiMe2'></ins><ul id='PiMe2'></ul><sub id='PiMe2'></sub></form><legend id='PiMe2'></legend><bdo id='PiMe2'><pre id='PiMe2'><center id='PiMe2'></center></pre></bdo></b><th id='PiMe2'></th></span></q></dt></tr></i><div id='PiMe2'><tfoot id='PiMe2'></tfoot><dl id='PiMe2'><fieldset id='PiMe2'></fieldset></dl></div>