自定义选项卡栏图标未以正确尺寸显示?

Custom Tab Bar Icons not presenting at correct size?

我已经创建了自己的自定义标签栏图标。我已将它们保存为以下尺寸:

22pt x 22pt with file name iconname@1x.png
44pt x 44pt with file name iconname@2x.png
66pt x 66pt with file name iconname@3x.png

将这些文件导入资产文件夹后,我使用了代码:

let homeController = HomeViewController()
        homeController.tabBarItem = UITabBarItem(title: "Home", image:#imageLiteral(resourceName: "home"), tag: 1)
        let nav1 = UINavigationController(rootViewController: homeController)

图标已显示,但尺寸非常大。我做错了什么?

看起来我是以 300 分辨率保存的,所以图像比我想象的要大。