在 iPhone 项目中实现 sqlite 的 Haversine 函数

发布于 2024-11-01 05:56:49 字数 486 浏览 0 评论 0原文

因此,经过一个小时的研究,我发现大多数人似乎都同意 http 上的功能://www.thismuchiknow.co.uk/?p=71 是在 iPhone 项目中实现半正矢函数的方法,当您拥有充满纬度和经度的数据库时,可以按距离对结果进行排序。不过,对于如何将其实际包含在您的项目中似乎没有什么帮助,而且我自己也没有运气。

无论我将该函数添加到 ViewController.m 文件中的哪个位置,我都会收到错误 expected ')' before '*' token。有些人提到您需要将 static void distanceFunc(sqlite3_context *context, int argc, sqlite3_value **argv); 放入 .h 文件中,但我也遇到了同样的错误。

谁能提供一个在 iPhone 项目中包含此功能的简单示例吗?

So after an hour of research, I've found that most people seem to agree that the function at http://www.thismuchiknow.co.uk/?p=71 is the way to go for implementing a Haversine function into an iPhone project for ordering results by distance when you have a database full of latitudes and longitudes. There seems to be little help on how to actually include it in your project though, and I'm having no luck on my own.

No matter where I add the function into my ViewController.m file, I get the error expected ')' before '*' token. Some people have mentioned you need to put static void distanceFunc(sqlite3_context *context, int argc, sqlite3_value **argv); into your .h file, but I get the same error there too.

Can anyone provide a brief example of including this function in an iPhone project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

棒棒糖 2024-11-08 05:56:49

你可以使用这个,

+(void)distanceFunc(sqlite3_context *context, int argc, sqlite3_value **argv);

或者将你的viewController文件的.m扩展名更改为.mm。(你也可以尝试这个)

更新

+(void)distanceFunc:(sqlite3_context *)context arg1:(int)argc arg2:(sqlite3_value **)argv;

尝试更新一个。

谢谢,

your can use this,

+(void)distanceFunc(sqlite3_context *context, int argc, sqlite3_value **argv);

or change .m extention of your viewController file to .mm.(You can try this one also)

updated

+(void)distanceFunc:(sqlite3_context *)context arg1:(int)argc arg2:(sqlite3_value **)argv;

try updated one.

Thanks,

黯然#的苍凉 2024-11-08 05:56:49

将代码插入到 .m 文件中任意位置提供的链接中应该没有问题。如果您在函数定义行上收到错误,则编译器很可能不知道 sqlite3_context 是什么。这意味着您尚未在 .m 文件中包含 sqlite3.h 标头。

There should be no problem with inserting the code in the link you gave anywhere in a .m file. If you are getting the error on the function definition line, it is likely that the compiler doesn't know what an sqlite3_context is. This means you haven't include the sqlite3.h header in your .m file.

蓬勃野心 2024-11-08 05:56:49

好的,所以我的问题是不使用 #import 和不将 libsqlite3.0.dylib 框架添加到我的项目中。至于将 http://www.thismuchiknow.co.uk/ 中的函数放置在哪里? p=71,我将其放在控制器的 .m 文件中的 #import 标记和 @synthesize 之间,显示如下博客文章中确实如此。

Ok, so my problem was a combination of not using #import <sqlite3.h> and not adding the libsqlite3.0.dylib framework to my project. As far as where to place the function from http://www.thismuchiknow.co.uk/?p=71, I put it between my #import tags and @synthesize in my controller's .m file, appearing just as it does in the blog post.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文