Example code eyePhoto-Step8 IB help needed

2011-12-20 Thread Eric Matecki

Hi,

I'm new to IB.

I'm trying to find by which magic NSWindow * imageCaptureWindow;,
member of @interface Controller : NSWindowController,
gets initialized by the following code :
[NSBundle loadNibNamed: @ImageCapture owner: self];

This variable isn't initialized anywhere in the code, so it must be IB
which does it.  But, contrary to the window's views, it isn't even an IBOutlet.

The only connection/binding/whatever I can see in IB for this window is
the delegate to point to the owner, which is the previously mentionned 
Controller.

Also, for the Device Browser View, where in IB can I find how mode is set to 
IKDeviceBrowserViewDisplayModeTable ?

I (think I) do understand how bindings works, but not how to retrieve the 
pertinent information in IB...

Any help would be appreciated, IB is so mysterious to me !

Thanks.

--
Keep intel OUTSIDE my Mac !
Hiii !!! I can see Intel chips creeping around my G5 !

Eric M.
___

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


Re: presentingViewController docs patently false

2011-12-20 Thread Fritz Anderson
On 19 Dec 2011, at 8:04 PM, Matt Neuburg wrote:

 Well, that's another thing - I haven't been able to summon the bugreporter 
 Web page in days.

bugreport.apple.com? I filed yesterday morning (12/19, CST).

— 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


Re: presentingViewController docs patently false

2011-12-20 Thread Kyle Sluder
On Dec 20, 2011, at 6:58 AM, Fritz Anderson fri...@manoverboard.org wrote:

 On 19 Dec 2011, at 8:04 PM, Matt Neuburg wrote:
 
 Well, that's another thing - I haven't been able to summon the bugreporter 
 Web page in days.
 
 bugreport.apple.com? I filed yesterday morning (12/19, CST).

According to Twitter, it was down for scheduled maintenance for much of 
yesterday.

--Kyle Sluder___

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


Re: Example code eyePhoto-Step8 IB help needed

2011-12-20 Thread Laurent Daudelin
On Dec 20, 2011, at 06:03, Eric Matecki wrote:

 Hi,
 
 I'm new to IB.
 
 I'm trying to find by which magic NSWindow * imageCaptureWindow;,
 member of @interface Controller : NSWindowController,
 gets initialized by the following code :
 [NSBundle loadNibNamed: @ImageCapture owner: self];
 
 This variable isn't initialized anywhere in the code, so it must be IB
 which does it.  But, contrary to the window's views, it isn't even an 
 IBOutlet.
 
 The only connection/binding/whatever I can see in IB for this window is
 the delegate to point to the owner, which is the previously mentionned 
 Controller.
 
 Also, for the Device Browser View, where in IB can I find how mode is set 
 to IKDeviceBrowserViewDisplayModeTable ?
 
 I (think I) do understand how bindings works, but not how to retrieve the 
 pertinent information in IB...
 
 Any help would be appreciated, IB is so mysterious to me !

Salut Eric.

I'm sure that there are some who will be able to better explain it than myself 
but, to make a long story short, when you call loadNIbNamed:, the method will 
connect all the instance variables of the owner that you have declared to be 
IB outlets with the UI objects that you did create in IB, after they are 
instantiated. How does the method do that? If they are no setter for a 
particular ivar, it will just set the ivar directly. This is also probably 
explained in the documentation.

HTH!

-Laurent.
-- 
Laurent Daudelin
AIM/iChat/Skype:LaurentDaudelin 
http://www.nemesys-soft.com/
Logiciels Nemesys Software  
laur...@nemesys-soft.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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

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


Gamekit - Scores not showing in sandbox

2011-12-20 Thread April
I have an iOS game I'm working on. 
It has leader boards and while I can get the information progamatically and it 
is correct, when I display the built in leader board view no scores are visible 
in the interface. If I back out of the board's view to see the list of  boards 
it shows a ranking and # of players (1) but again if I select a board I know 
has scores, I do not show up at all. It just says no scores.

I'm not really sure I'm 100% on gamekit this way anyway since games are not my 
thing. But isn't it supposed to show my score in the #1 slot under all players?



April.___

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


CoreData and 3 level Master/Detail tableView

2011-12-20 Thread gumboots
I apologize in advance for subjecting the list members to another CoreData 
model description. To ease the pain here is a screen shot of the datamodel.

The plan is to build a 10.7, document based, CoreData app that stores,sorts and 
displays scores from clay target events around the country. It will be used to 
select the national teams.

Simply put a Competition entity can have multiple Events and multiple Entries. 
An Entry can have multiple EventScores but may not have an EventScore for every 
Event. Event is also connected to eventScores.

I have a 3 level master/detail view. I am currently using 3 tableViews, the 
first one is bound to the competitionsArrayController arrangedObjects.name The 
second tableView is bound to the selectedCompetition.entries arrayController 
arrangedObjects.shooter.name

The third tableView has 2 tableColumns. The first tableColumn's arrayController 
is bound to competitionsArrayController.selection.events and displays all the 
event names in the first column.

How do I display the EventScores for selected Entry in the second column?

Thanks in advance

Rob
___

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


CoreData and 3 level Master/Detail tableView

2011-12-20 Thread gumboots
I apologize in advance for subjecting the list members to another CoreData 
model description. To ease the pain here is a screen shot of the datamodel.

http://codemuster.co.nz/images/datamodel.jpg

The plan is to build a 10.7, document based, CoreData app that stores,sorts and 
displays scores from clay target events around the country. It will be used to 
select the national teams.

Simply put a Competition entity can have multiple Events and multiple Entries. 
An Entry can have multiple EventScores but may not have an EventScore for every 
Event. Event is also connected to eventScores.

I have a 3 level master/detail view. I am currently using 3 tableViews, the 
first one is bound to the competitionsArrayController arrangedObjects.name The 
second tableView is bound to the selectedCompetition.entries arrayController 
arrangedObjects.shooter.name

The third tableView has 2 tableColumns. The first tableColumn's arrayController 
is bound to competitionsArrayController.selection.events and displays all the 
event names in the first column.

How do I display the EventScores for selected Entry in the second column?

Thanks in advance

Rob
___

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


Carousel - like control for Mac OS

2011-12-20 Thread Nick
Hello
I am wondering, if a component exists similar to this
http://www.ajaxdaddy.com/demo-jquery-carousel.html
for Mac OS.

Basically, what I need is just next and previous buttons (and
these images smoothly scrolled one image per next or prev button
click).

At the moment I am trying to implement it on my own.
This seems to be a simple NSScrollView with hidden scroll bars whose
inner view has these image views added as subviews.

However, I am not sure how to implement smooth scrolling of one image
per click. I guess I need to use Core Animation?
Are there any simple examples that I could look at?
___

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


Re: Carousel - like control for Mac OS

2011-12-20 Thread Tom Hohensee
Have a look at iCarousel.  Has a port for iOS as well as Mac OS.  
This can be done with ImageKit in IB as well.  Just disable the scroll view and 
setup forward and back buttons that call the image index (nextIndex, etc). See 
imageKit docs.

Tom
 

On Dec 20, 2011, at 3:00 PM, Nick wrote:

 Hello
 I am wondering, if a component exists similar to this
 http://www.ajaxdaddy.com/demo-jquery-carousel.html
 for Mac OS.
 
 Basically, what I need is just next and previous buttons (and
 these images smoothly scrolled one image per next or prev button
 click).
 
 At the moment I am trying to implement it on my own.
 This seems to be a simple NSScrollView with hidden scroll bars whose
 inner view has these image views added as subviews.
 
 However, I am not sure how to implement smooth scrolling of one image
 per click. I guess I need to use Core Animation?
 Are there any simple examples that I could look at?
 ___
 
 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/tom.hohensee%40gmail.com
 
 This email sent to tom.hohen...@gmail.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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

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


Account validation in CocoaTouch for the purchased app

2011-12-20 Thread Alexander Reichstadt
Hi,

given an app is sold on iTunes, is there a way for that app to find out which 
email address was used for the iTunes account when it was purchased?

Thanks
Alex

___

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


Lion: Batch close

2011-12-20 Thread Appa Rao Mulpuri
Hi,

My application is crashing on Lion if user tries to close all open windows 
using Option key + Mouse click. Same is working in Leopard and Snow leopard. Is 
anything is changed related to Batch Close in Lion? Any work around for  this?

- Apparao
This email and any attachments are confidential, and may be legally privileged 
and protected by copyright. If you are not the intended recipient dissemination 
or copying of this email is prohibited. If you have received this in error, 
please notify the sender by replying by email and then delete the email 
completely from your system. Any views or opinions are solely those of the 
sender. This communication is not intended to form a binding contract unless 
expressly indicated to the contrary and properly authorised. Any actions taken 
on the basis of this email are at the recipient's own risk.


This email is sent for and on behalf of Ivy Comptech Private Limited. Ivy 
Comptech Private Limited is a limited liability company.

This email and any attachments are confidential, and may be legally privileged 
and protected by copyright. If you are not the intended recipient dissemination 
or copying of this email is prohibited. If you have received this in error, 
please notify the sender by replying by email and then delete the email 
completely from your system.
Any views or opinions are solely those of the sender.  This communication is 
not intended to form a binding contract on behalf of Ivy Comptech Private 
Limited unless expressly indicated to the contrary and properly authorised. Any 
actions taken on the basis of this email are at the recipient's own risk.

Registered office:
Ivy Comptech Private Limited, Cyber Spazio, Road No. 2, Banjara Hills, 
Hyderabad 500 033, Andhra Pradesh, India. Registered number: 37994. Registered 
in India. A list of members' names is available for inspection at the 
registered office.

___

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


Re: Carousel - like control for Mac OS

2011-12-20 Thread Nick
Thanks!

2011/12/20 Tom Hohensee tom...@me.com:
 Have a look at iCarousel.  Has a port for iOS as well as Mac OS.

 Tom

 On Dec 20, 2011, at 3:00 PM, Nick wrote:

 Hello
 I am wondering, if a component exists similar to this
 http://www.ajaxdaddy.com/demo-jquery-carousel.html
 for Mac OS.

 Basically, what I need is just next and previous buttons (and
 these images smoothly scrolled one image per next or prev button
 click).

 At the moment I am trying to implement it on my own.
 This seems to be a simple NSScrollView with hidden scroll bars whose
 inner view has these image views added as subviews.

 However, I am not sure how to implement smooth scrolling of one image
 per click. I guess I need to use Core Animation?
 Are there any simple examples that I could look at?
 ___

 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/tomhoh%40mac.com

 This email sent to tom...@mac.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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

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