我想在我的應用程序中增加UITabBarItem的文本大小。它的默認顏色和大小不可見。如何增加iphone中UITabBarItem的大小?
我試過這段代碼,但給我錯誤 - >即時消息的UITabBar沒有用選擇器'setTitleTextAttributes'聲明方法。
有沒有人知道該怎麼做?
[yourTabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
[NSValue valueWithUIOffset:UIOffsetMake(0,0)], UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"Helvetica" size:18.0], UITextAttributeFont, nil]
forState:UIControlStateNormal];