更改標籤欄專案標題和圖示

使用故事板:

從相應的檢視控制器中選擇選項卡欄項,然後轉到屬性檢查器

如果需要內建圖示和標題,請將系統項設定為相應的值。

對於自定義圖示,將所需影象新增到 assets 資料夾,並將之前的系統項設定為自定義

現在,設定從選定影象下拉選單中選擇選項卡時顯示的圖示,並從影象下拉選單中選擇預設選項卡圖示。在標題欄位中新增相應的標題。

StackOverflow 文件

程式設計方式:

在檢視控制器的 viewDidLoad() 方法中,新增以下程式碼:

Objective-C

self.title = @"item";

self.tabBarItem.image = [UIImage imageNamed:@"item"];
self.tabBarItem.selectedImage = [UIImage imageNamed:@"item_selected"];

迅速:

self.title = "item"
self.tabBarItem.image = UIImage(named: "item")
self.tabBarItem.selectedImage = UIImage(named: "item_selected")