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 ([email protected])
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 [email protected]