Re: predefined macro iOS vs OS X
Re: predefined macro iOS vs OS X
- Subject: Re: predefined macro iOS vs OS X
- From: Rick Mann <email@hidden>
- Date: Fri, 16 Aug 2013 05:17:14 -0700
One thing to note: in the 64-bit run time, NSRect and CGRect are the same thing.
Otherwise, what you want is
#if TARGET_OS_IPHONE
or
#if !TARGET_OS_IPHONE
On Aug 16, 2013, at 05:10 , Gerriet M. Denkmann <email@hidden> wrote:
> I have some code which is almost identical vor iOS and OS X.
> So I want to write something like:
>
> #ifdef SOME_THING
> // OS X
> NSRect someRect = ...
> #else
> // iOS
> CGRect someRect =...
> #endif
>
> But what to choose for SOME_THING?
>
> Gerriet.
>
> _______________________________________________
>
> 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
--
Rick
_______________________________________________
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