Presuming that the firstgen iPod touch has iOS 3.x on it, it is probably
crashing here:

> self.window.rootViewController = self.tabBarController;

Since rootViewController was introduced to UIWindow in iOS 4.0. Pre-iOS 4.0
you need to use (from what I recall):

[self.window addSubview:self.tabBarController.view];

Which will cause newer versions of iOS to complain. Though there may be
other issues related to Xcode 4.3 supporting ancient versions of iOS (check
the developer forums) and pay attention to Xcode build warnings.

_______________________________________________

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

Reply via email to