Ilja Iwas
Ilja Iwas
As far as I can recall, there is no functionality built-in to link against other library then Foundation. You are more than welcome to add such a feature. Also, objc-run...
Does the test script still work with your changes? Travis says it's broken.
Test script is failing for me locally, too. What version of Xcode are you running? I'm still holding out with 5.0.x.
I guess either CocoaPods or Xcode has changed too much. Reopening the issue. The best way to solve this issue would be to create some kind of builder script, that...
An extra alert panel when hitting the "Install" button in these cases would be helpful, too.
Turn off the "Treat Warnings as Errors" build setting and you should be good.
Thanks for considering my request, but it's probably not necessary. Since I only need to support Mac & iOS, I'm probably better of re-implementing my own library on top of...
I don't have any issues with ICU in particular. But it's another dependency I'd like to avoid, as (at least in my naive understanding) the same functionality is already contained...
I was thinking about using CFStringTokenizer. https://developer.apple.com/librarY/mac/documentation/CoreFoundation/Reference/CFStringTokenizerRef/Reference/reference.html Not sure how it differs from ICU, though, and what i18n features you are using. Do you have a minute to elaborate?
There is also an NSString API which supposedly does the same thing: https://developer.apple.com/library/ios/documentation/cocoa/reference/foundation/classes/NSString_Class/Reference/NSString.html#jumpTo_60 Using CFStringTokenizer is probably faster and can be called from plain C/C++, though.