iOS Question iStringUtils library not recognized

tseyfarth

Member
Licensed User
Longtime User
Hello all

I have selected iStringUtils library to be included in my project. However the IDE/Compliler says it is an unknown type - are you missing a library reference?

B4X:
Private StrFunct As iStringUtils

Can anyone tell me how to correct this?

Thanks,
Tim
 

tseyfarth

Member
Licensed User
Longtime User
Seems simple... too simple- I had not thought of trying that.
Normally the As part is the same name as the library name but not in this case.

Thank you Johan,
Tim
 
Upvote 0

agraham

Expert
Licensed User
Longtime User
Normally the As part is the same name as the library name
Not really true. A library can have several classes implemented and the names can be whatever the writer decides. I's just that for some libraries with a single class the writer has named the library with the same name as the class.
 
Upvote 0

tseyfarth

Member
Licensed User
Longtime User
Hello agraham,

OK, that does seem reasonable, but how to know what to use then? Where to go to see the publicly exposed classes?

Tim
 
Upvote 0
Top