Aspell Spell Checker on iPhone?

I managed to compile aspell as a static library for the iPhone. I have a libaspell.a file and included it in my xcode project as a framework.

Does anyone know how to use their c / c ++ api for iphone? Is there a sample or example somewhere on the net?

Thanks for any feedback in advance, John

+2
source share
2 answers

Looks like you just need to take a closer look at the documentation. Here is the C API documentation: http://aspell.net/man-html/Through-the-C-API.html#Through-the-C-API

This document says:

6.1.3 Examples

Two simple examples are included in the examples directory. The sample-c program demonstrates most of the functionality of the Aspell library and list-dicts lists the available dictionaries.

It looks pretty straight forward.

+2
source

I have another stackoverflow post where I ran into some problems when using aspell for iOS. Here is the link to this post

https://stackoverflow.com/questions/6588469/aspell-giving-errors-on-ios-detected-an-attempt-to-call-a-symbol-in-system-lib

0
source

Source: https://habr.com/ru/post/1379638/


All Articles