2012-12-03 120 views
1

我嘗試運行TapKu iOS的示範項目,從網上下載: https://github.com/devinross/tapkulibrary/branches錯誤運行Tapku演示項目

我建立一個沒有錯誤,但是當涉及到要在模擬器上安裝,我得到這個錯誤信息:

[AppDelegate_iPhone window]: unrecognized selector sent to instance 0x9b7ad90 
2012-12-03 17:05:13.478 unviersaldemo[94132:13d03] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[AppDelegate_iPhone window]: unrecognized selector sent to instance 0x9b7ad90' 
*** First throw call stack: 
(0x1a44012 0x1429e7e 0x1acf4bd 0x143d7ea 0x1a33cf9 0x1a3394e 0x3da78 0x2bcc 0x4807b7 0x480da7 0x481fab 0x493315 0x49424b 0x485cf8 0x237fdf9 0x237fad0 0x19b9bf5 0x19b9962 0x19eabb6 0x19e9f44 0x19e9e1b 0x4817da 0x48365c 0x2b36 0x2925 0x1) 
libc++abi.dylib: terminate called throwing an exception 
(lldb) 

任何想法?

回答

2

我只是說:

@interface AppDelegate_iPhone : TKAppDelegate <UIApplicationDelegate> { 
    UIWindow *window; 
} 

@property (nonatomic, retain) UIWindow *window; 

在AppDelegate_iPhone.h文件

@synthesize window; 

在AppDelegate_iPhone.m文件。 適合我。

+0

確定它運行,但當我嘗試玩它時我得到這個錯誤: 2012-12-05 10:58:19.350 unviersaldemo [98678:13d03]應用程序窗口預計將有一個根視圖控制器在應用程序launch.Anyway我接受你的解決方案因爲它修復了我的第一個問題:) – Claus

+0

是的,我不明白爲什麼,但它是一個樣品項目的方式太buggy ... – k20