Just a little off topic update.

2015-10-23 Thread Alex Zavatone
Some of you guys might know I claimed to have gone to Namibia to teach 2 weeks 
of iOS.

Well, after the first week, we've got 24 new IT professionals, converts from 
.net and college students who are now able to make basic navigable apps with 
singletons, data classes, multiple types of view controller classes and so on, 
+ the knowledge on how to dive into the header files to find the answers to new 
areas themselves.

Also ran into one intern who has already published several robust Swift apps as 
well.

I happened to leave a few spare Macs at the lab and we're actually going to 
continue weekly lesson plans to keep the effort moving.

Coming up is a marathon weekend session and one more week of new students 
starting on Monday.

I'm a little spent, but this has been pretty highly rewarding experience and 
it's great to see the professional IT talent in southern Africa and just how 
fast they take to getting their heads around iOS.

This is really good.  

Hoping you all enjoy the off topic, yet still cocoa related diversion.  

All the best from Windhoek West, Namibia,
Alex Zavatone
___

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

Re: Strange Message when Loading NIB

2015-10-23 Thread Ben Kennedy

> On 23 Oct 2015, at 4:38 am, Dave  wrote:
> 
> Please see methods below, these are in a Window Controller, I get the message 
>  "Could not find image named ‘Outlook’.” in the log, but I have no clue why 
> this is being generated it what it means, it appears to be coming from the 
> NIB Loading methods.

Did you verify that in your nib (or storyboard or whatever) there is no image 
called “Outlook” configured for anything?

b


___

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

Strange Message when Loading NIB

2015-10-23 Thread Dave
XCode Version 7.1 (7B91b)

HI All,

Please see methods below, these are in a Window Controller, I get the message  
"Could not find image named ‘Outlook’.” in the log, but I have no clue why this 
is being generated it what it means, it appears to be coming from the NIB 
Loading methods.

2015-10-23 12:28:51.958 LTWTest1[10380:675925] startUp - Begin
2015-10-23 12:28:51.958 LTWTest1[10380:675925] Could not find image named 
'Outlook'.
2015-10-23 12:28:51.966 LTWTest1[10380:675925] windowDidLoad - Begin
2015-10-23 12:29:00.271 LTWTest1[10380:675925] windowDidLoad - End
2015-10-23 12:29:00.273 LTWTest1[10380:675925] startUp - End

This is happening on 10.10 and 10.11, on my own machines although I get the 
message, the App actually seems to work, however on the customers machine, I’m 
getting reports that it just hangs after this message is displayed.

As far as I know this was working ok and the message wasn’t being logged and 
seems to have started happening in the last week. Any ideas on how to find out 
what the message means would be greatly appreciated.

All the Best
Dave

---
-(void) startUp
{
LTWOutlookWindow*   myWindow;

NSLog(@“startUp - Begin”);

myWindow = (LTWOutlookWindow*) self.window;
[myWindow orderFront:nil];

NSLog(@“startUp - End”);
}

---
-(void) windowDidLoad 
{
LTWOutlookWindow*   myPhantomWindow;

NSLog(@“ windowDidLoad - Begin”);

myPhantomWindow = (LTWOutlookWindow*) self.window;

m[myPhantomWindow 
initializeWindowWithAppInternalID:self.pWindowHandler.pAppBundleID];

[super windowDidLoad];

NSLog(@“ windowDidLoad - End”);
}



___

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