程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> objective c-Objective-C添加c到dictionary中

objective c-Objective-C添加c到dictionary中

編輯:編程綜合問答
Objective-C添加c到dictionary中

添加C-結構到NSDictionary報錯

C-struct是在MapKit.hMKCoordinateRegion

聲明:

typedef struct {
    CLLocationCoordinate2D center;
    MKCoordinateSpan span;
} MKCoordinateRegion;

CLLocationCoordinate2D的聲明:

typedef struct {
    CLLocationDegrees latitude;
    CLLocationDegrees longitude;
} CLLocationCoordinate2D;

MKCoordinateSpan和它一樣

在添加MKCoordinateRegionNSDictionary中:

   CLLocationCoordinate2D center = CLLocationCoordinate2DMake(40.723128, -74.000694);
    MKCoordinateSpan span = MKCoordinateSpanMake(1.0, 1.0);
    MKCoordinateRegion region = MKCoordinateRegionMake(center, span);
    NSMutableDictionary *param = [[NSMutableDictionary alloc] init];
    [param setObject:region forKey:@"region"];

第五行報錯:Sending 'MKCoordinateRegion' to parameter of incompatible type 'id'

請高手指教

最佳回答:


不能直接添到dictionary,但是可以用NSValue封裝實現。

例子:

typedef struct { 
  float real; 
  float imaginary; 
} ImaginaryNumber; 

ImaginaryNumber miNumber; 
miNumber.real = 1.1; 
miNumber.imaginary = 1.41; 

NSValue *miValue = [NSValue value: &miNumber 
                        withObjCType:@encode(ImaginaryNumber)]; 

[param setObject:miValue forKey:@"region"];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved