1

こんにちは、iOS の初心者です。カスタム タブバーを作成し、iOS 6 では正常に動作する UIbar ボタン項目を追加しましたが、iOS 7 GM と Xcode 5 では問題が表示されます..... これはカスタム タブバーのコードです ...

 TabBar=[[UITabBar alloc]initWithFrame:CGRectMake(0, 480, 320, 80)];
TabBar.autoresizingMask =UIViewContentModeTopRight | UIViewAutoresizingFlexibleWidth;

TabBar.tintColor=[UIColor blackColor];

UIButton *btn1=[[UIButton alloc]initWithFrame:CGRectMake(0, 0, 20, 20)];


[btn1 setTitle:@"Charge Details" forState:UIControlStateNormal];
btn1.titleLabel.font=[UIFont boldSystemFontOfSize:10.0];


[btn1 addTarget:self action:@selector(ChargeDetails) forControlEvents:UIControlEventTouchUpInside];

UIBarButtonItem *button1 = [[UIBarButtonItem alloc]initWithCustomView:btn1];

UIButton *btn2=[[UIButton alloc]initWithFrame:CGRectMake(0,0,40,40)];
btn2.titleLabel.font=[UIFont boldSystemFontOfSize:10.0];
[btn2 setTitle:@"View Contact Details"  forState:UIControlStateNormal];

[btn2 addTarget:self action:@selector(ViewContactDetails) forControlEvents:UIControlEventTouchUpInside];

UIBarButtonItem *button2 = [[UIBarButtonItem alloc]initWithCustomView:btn2];


TabBar.items=[NSArray arrayWithObjects:button1,button2,nil];

[self.view addSubview:TabBar];

このコードは iOS 6 で正常に動作しますが、iOS 7 GM では問題があります。

  TabBar.items=[NSArray arrayWithObjects:button1,button2,nil];

これはエラーです....

   Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIBarButtonItem _updateViewForIdiom:positionItems:]: unrecognized selector sent to instance 0xbd3c6c0'
  *** First throw call stack:
    (
0   CoreFoundation                      0x04b9a5e4 __exceptionPreprocess + 180
1   libobjc.A.dylib                     0x018b58b6 objc_exception_throw + 44
2   CoreFoundation                      0x04c37903 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275
3   CoreFoundation                      0x04b8a90b ___forwarding___ + 1019
4   CoreFoundation                      0x04b8a4ee _CF_forwarding_prep_0 + 14
5   UIKit                               0x006caefa -[UITabBar setItems:animated:] + 1218
6   UIKit                               0x006c9d9c -[UITabBar setItems:] + 48
7   HISWebService                       0x00021ee6 -[PatientLabDetailsViewController viewDidLoad] + 4566
8   UIKit                               0x0052e9a8 -[UIViewController loadViewIfRequired] + 696
9   UIKit                               0x0052ec44 -[UIViewController view] + 35
10  UIKit                               0x00548a72 -[UINavigationController _startCustomTransition:] + 778
11  UIKit                               0x00555757 -[UINavigationController _startDeferredTransitionIfNeeded:] + 688
12  UIKit                               0x00556349 -[UINavigationController __viewWillLayoutSubviews] + 57
13  UIKit                               0x0068f39d -[UILayoutContainerView layoutSubviews] + 213
14  UIKit                               0x00485dd7 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 355
15  libobjc.A.dylib                     0x018c781f -[NSObject performSelector:withObject:] + 70
16  QuartzCore                          0x03e1172a -[CALayer layoutSublayers] + 148
17  QuartzCore                          0x03e05514 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 380
18  QuartzCore                          0x03e05380 _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 26
19  QuartzCore                          0x03d6d156 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 294
20  QuartzCore                          0x03d6e4e1 _ZN2CA11Transaction6commitEv + 393
21  QuartzCore                          0x03d6ebb4 _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 92
22  CoreFoundation                      0x04b6253e __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
23  CoreFoundation                      0x04b6248f __CFRunLoopDoObservers + 399
24  CoreFoundation                      0x04b403b4 __CFRunLoopRun + 1076
25  CoreFoundation                      0x04b3fb33 CFRunLoopRunSpecific + 467
26  CoreFoundation                      0x04b3f94b CFRunLoopRunInMode + 123
27  GraphicsServices                    0x01ab59d7 GSEventRunModal + 192
28  GraphicsServices                    0x01ab57fe GSEventRun + 104
29  UIKit                               0x0041b94b UIApplicationMain + 1225
30  HISWebService                       0x0001f5fd main + 141
31  libdyld.dylib                       0x051be725 start + 0
32  ???                                 0x00000001 0x0 + 1
)
 libc++abi.dylib: terminating with uncaught exception of type NSException

iOS 7 GM で UITabbar にカスタム ボタンを追加する方法について、私の問題を解決してください。

4

1 に答える 1

1

Apple のタブバーのドキュメントから:

タブ バーはコントロールであり、通常はタブ バー コントローラーのコンテキストで画面の下部に表示され、アプリ内の一連のビューへのワンタップ、モーダル アクセスをユーザーに提供します。タブ バーの各ボタンはタブ バー アイテムと呼ばれ、UITabBarItem クラスのインスタンスです。代わりに、それぞれがアクションを実行するボタンのバーをユーザーに提供したい場合は、UIToolbar オブジェクトを使用します。

UITabBar クラスは、項目の並べ替え、削除、およびバーへの追加によるタブ バーのユーザー カスタマイズをサポートします。タブ バー デリゲートを使用して、この動作を強化できます。

UITabBarItem クラスを使用して項目を作成し、setItems:animated: メソッドを使用して項目をタブ バーに追加します。animation: 引数を持つすべてのメソッドを使用すると、オプションで表示の変更をアニメーション化できます。selectedItem プロパティを使用して、現在のアイテムにアクセスします。

タブバーで UIBarbuttonItems を使用しています。タブ バーを使用する場合は、UITabBarItems を使用します。

ただし、ボタンにアクションを追加していることから、タブ バーではなくツールバーを使用する必要があります。これらの変更を行うと、桃色に動作するはずです!

于 2014-01-09T22:18:37.790 に答える