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.tabBarC
Hello, all ...
I'm working on an app that has to work on first-gen iPod touch devices. I set
the deployment target to 3.1 and made sure armv6 was specified such that my app
now at least launches on said firstgen iPod touch. However, it hangs before
showing the tab bar or first view controller: