Re: app won't run in iPhone simulator
Re: app won't run in iPhone simulator
- Subject: Re: app won't run in iPhone simulator
- From: Luke the Hiesterman <email@hidden>
- Date: Wed, 14 Oct 2009 06:48:44 -0700
This is really a cocoa-dev problem. That being said, you shouldn't put
synchronous network requests in awakeFromNib - that could be timing
out. Also, the crashlog in ~/Library/Logs/DiagnosticReports (on Snow
Leopard) should reveal the problem.
Luke
On Oct 14, 2009, at 4:59 AM, Jay Swartzfeger wrote:
All, I'm new to xcode and a simple iPhone app will launch but then
immediately quits to the home screen. Do you see anything here I'm
doing wrong?
// MainView.h
//
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
@interface MainView : UIView {
IBOutlet UIWebView *webView;
}
@end
// MainView.m
//
#import "MainView.h"
@implementation MainView
-(void)awakeFromNib {
//[webView loadRequest:[NSURLRequest requestWithURL:[NSURL
URLWithString:@"http://www.apple.com"]]];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL
fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index"
ofType:@"html"]isDirectory:NO]]];
}
@end
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
@apple.com
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden