Well I’d go with a conditional like:

#if TARGET_OS_IPHONE

typedef CGRect NSRect;
typedef CGSize NSSize;
typedef CGPoint NSPoint;

#define NSMakeRect CGRectMake
#define NSMakePoint CGPointMake

// etc

#endif

and go with NS* variants.

On Aug 16, 2013, at 20:17, Rick Mann <rm...@latencyzero.com> wrote:

> 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 <gerr...@mdenkmann.de> 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 (Cocoa-dev@lists.apple.com)
>> 
>> 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:
>> https://lists.apple.com/mailman/options/cocoa-dev/rmann%40latencyzero.com
>> 
>> This email sent to rm...@latencyzero.com
> 
> 
> -- 
> Rick
> 
> 
> 
> 
> _______________________________________________
> 
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
> 
> 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:
> https://lists.apple.com/mailman/options/cocoa-dev/xcvista%40me.com
> 
> This email sent to xcvi...@me.com

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to