On May 6, 2011, at 3:55 PM, eveningnick eveningnick wrote:

> I tried to use method -hotSpot of NSCursor, but it returns
>> sc x=-2057825613, y=0
> 
> -(IBAction)timeHandler:(id)timer {
>        //NSCursor *sc = [NSCursor currentSystemCursor];
>       NSCursor *sc = [NSCursor currentCursor];
>       NSLog(@"sc x=%d, y=%d", [sc hotSpot].x, [sc hotSpot].y);
> }
> What may be wrong here?

-hotspot returns an NSPoint:

typedef struct _NSPoint {
      CGFloat x;
      CGFloat y;
} NSPoint;

Try using %f.

_______________________________________________

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

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

Reply via email to