Re: Where is my bicycle?
Re: Where is my bicycle?
- Subject: Re: Where is my bicycle?
- From: Charles Srstka <email@hidden>
- Date: Mon, 06 Apr 2015 11:36:38 -0500
>
> On Apr 6, 2015, at 11:19 AM, Gerriet M. Denkmann <email@hidden> wrote:
>
> OS X 10.10.2
>
> NSString *string = @"abc 🚲 xyz"; // BICYCLE = U+1F6B2
> NSCharacterSet *charSet = [ NSCharacterSet characterSetWithCharactersInString: string ];
> BOOL pq = [ charSet longCharacterIsMember: 0x1F6B2 ];
> NSLog(@"%s CharacterSet from \"%@\" contains %s🚲 (0x1F6B2)",__FUNCTION__, string, pq ? "" : "no ");
>
> This prints:
>
> CharacterSet from "abc 🚲 xyz" contains no 🚲 (0x1F6B2)
>
> Where is my bicycle gone? What am I doing wrong?
Objective-C doesn’t support Unicode in source files (although Swift does).
Charles
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden