美文网首页
2018-07-12 new BMKMapPoint报错问题

2018-07-12 new BMKMapPoint报错问题

作者: 管饱饱 | 来源:发表于2018-07-12 15:08 被阅读13次

BMKMapPoint * temppoints = new BMKMapPoint[array.count];

如果你的项目在运行过程中 上面语句遇到报错有两个解决办法

1.把.m改成.mm,因为这是c的方法,改下就可以了

2.如果不行 又报了如下类似的错误

那么 就用如下方式申明就好了

BMKMapPoint * temppoints = malloc(sizeof(CLLocationCoordinate2D) * array.count);

相关文章

网友评论

      本文标题:2018-07-12 new BMKMapPoint报错问题

      本文链接:https://www.haomeiwen.com/subject/cncrpftx.html