我開始與Three20庫工作,創建使用下面的代碼UIButton
:Three20簡單的導航
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Add New"
style:UIBarButtonItemStyleBordered
target:@"tt://samples/new"
action:nil] autorelease];
當用戶觸摸按鈕,我想推NewSampleViewController
一個實例到導航。我已經加入我的應用程序委託的-didFinishLaunchingWithOptions
方法如下:
[map from:@"tt://samples/new" toViewController:[NewSampleViewController class]];
目前的情況是,當按鈕被觸摸時,什麼都不會發生在所有。設備上沒有任何反應,並且在控制檯中看不到任何日誌記錄。
我做錯了什麼或錯過了這裏?
謝謝!