> On Apr 1, 2017, at 4:57 PM, Gerriet M. Denkmann wrote:
>
>
>> On 2 Apr 2017, at 06:33, Jens Alfke wrote:
>>
>>
>>> On Apr 1, 2017, at 11:58 AM, Gerriet M. Denkmann
>>> wrote:
>>>
>>> I think that the examples above show, that NSURL does indeed do something
>>> about normalising Unicode
> On 2 Apr 2017, at 06:33, Jens Alfke wrote:
>
>
>> On Apr 1, 2017, at 11:58 AM, Gerriet M. Denkmann wrote:
>>
>> I think that the examples above show, that NSURL does indeed do something
>> about normalising Unicode strings.
>
> That makes sense; I’d expect that one of the RFCs covering UR
> On Apr 1, 2017, at 11:58 AM, Gerriet M. Denkmann wrote:
>
> I think that the examples above show, that NSURL does indeed do something
> about normalising Unicode strings.
That makes sense; I’d expect that one of the RFCs covering URLs describes
normalization. Otherwise constructing URLs (fo
On Apr 1, 2017, at 12:07 , Daryle Walker wrote:
>
> I got a feeling that, since the interior of the window and the exterior of
> the view are probably bound, that the auto-layout system is choosing the
> view’s smaller size over the window’s bigger one. How do I reverse this? Or
> do I have to
1. Created new storyboard and dragged a window (with controller) into it. Comes
with a view (with controller).
2. Expanded the size of the window. Didn’t touch the associated view.
3. On test run, window comes out much smaller than expected. Can’t figure out a
tweak to fix it.
I got a feeling th
> On 2 Apr 2017, at 01:09, Quincey Morris
> wrote:
>
> On Apr 1, 2017, at 04:41 , Gerriet M. Denkmann wrote:
>>
>> for different values of path I got:
>> path = @“/ก่ี”; // consonant + mark + vowel → same = YES
>> path = @“/กี่”; // consonant + vowel + mark → same = YES
>>
On Apr 1, 2017, at 04:41 , Gerriet M. Denkmann wrote:
>
> for different values of path I got:
> path = @“/ก่ี”; // consonant + mark + vowel → same = YES
> path = @“/กี่”; // consonant + vowel + mark → same = YES
>
> Note: these two paths also look identical in Finder.
>
>
I tried (with case-sensitive HFS+ in macOS 12.4):
NSString *path = …
NSURL *url = [ NSURL fileURLWithPath: path isDirectory: NO ];
NSString *urlPath = url.path;
BOOL same = [ urlPath isEqualToString: path ];
for different values of path I got:
path = @“/ก่ี”; // consonant + mark + vowel →