Structure Array in iOS

Source: Internet
Author: User

We often use structs in iOS development, but when we use struct arrays, Xcode has a yellow warning hint.

Bmkmappoint *points = new Bmkmappoint[pointcount];

Bmkmappoint is a struct, I declare a struct array dynamically.

delete [] points;

Releases a struct array.

When you write a function that wants to return an array of structs

+ (CLLOCATIONCOORDINATE2D *) Arraytransformcoordinate: (Nsarray *) array{    cllocationcoordinate2d coors[60];    int i =0;    For (nsdictionary *dic in array) {        Coors[i].latitude = ((NSNumber *) ([dic objectforkey:@ "latitude"]). doublevalue;< C4/>coors[i].longitude = ((NSNumber *) ([dic objectforkey:@ "longitude"]). Doublevalue;        i++;    }    return Coors;}

We can do this to eliminate the yellow warning: change the. m suffix to. mm

This will do, meaning to tell the compiler to compile the file with objective-c++.

Structure Array in iOS

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.