如何在Xcode中获取所有系统图标

时间:2016-06-15 10:19:20

标签: ios xcode swift button

我希望能够使用此处列出的相机开关图标而不是普通的开关图标。 https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/BarIcons.html

但是在我的条形按钮项下的Xcode中它似乎没有列出? enter image description here

我知道我可能会遗漏一些明显的东西。任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:6)

我们正在谈论this喜欢

enter image description here

你的目标是获取1x和2x图标? 有几个在线资源(免费和付费),但我认为你的目标是直接从设备中获取这些图标。

这些来自TabBarSystemItem init self.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFavorites tag:0]

typedef enum {
   UITabBarSystemItemMore,
   UITabBarSystemItemFavorites,
   UITabBarSystemItemFeatured,
   UITabBarSystemItemTopRated,
   UITabBarSystemItemRecents,
   UITabBarSystemItemContacts,
   UITabBarSystemItemHistory,
   UITabBarSystemItemBookmarks,
   UITabBarSystemItemSearch,
   UITabBarSystemItemDownloads,
   UITabBarSystemItemMostRecent,
   UITabBarSystemItemMostViewed,
} UITabBarSystemItem;

如果您要提取所有内容,请参阅here以获取相关信息。

如果您只想列出它们,请查看您将找到的标题

{
    "_id" : ObjectId("5761c22edd93e211f49d5d51"),
    "fullName" : "Mohammad Amir",
    "enroll" : "abc123",
    "email" : "amir.fragrance@gmail.com",
    "mobile" : "8090370605",
    "password" : "$2a$12$RTSx6T8SyY9d8d16HpgatuEUHwRBi60PZslCWvSGojNJSx21HKQuK",
    "registeredOn" : ISODate("2016-06-15T21:01:34.736Z"),
    "profile" : {
        "isCompleted" : true,
        "verification" : [ 
            {
                "provost" : false,
                "verifiedBy" : null,
                "verifiedOn" : null
            }, 
            {
                "chairman" : false,
                "verifiedBy" : null,
                "verifiedOn" : null
            }
        ],
        "isChecked" : false,
        "fullName" : "Mohammad Amir",
        "enroll" : "abc123",
        "fatherName" : "jhgjgjh",
        "motherName" : "kghjhgj",
        "dob" : "2016-06-14T18:30:00.000Z",
        "gender" : "Male",
        "address" : "ytiutit",
        "city" : "Abdul",
        "state" : "Andaman and Nicobar Islands",
        "country" : "Afghanistan",
        "pincode" : "76575",
        "courseType" : "UG",
        "courseName" : "Adv Dip in Int.Decoration",
        "semesterYear" : 1,
        "facultyNumber" : "765gvjn",
        "department" : "Agricultural Eco. Business Mngt.",
        "hall" : "Abdullah Hall",
        "verification[0]" : {
            "provost" : true,
            "verifiedBy" : "Director Computer Centre",
            "verifiedOn" : ISODate("2016-06-16T19:37:33.161Z")
        }
    },
    "contact" : {
        "emailID" : {
            "isVerified" : false,
            "isChecked" : false
        },
        "mobileID" : {
            "isVerified" : false,
            "isChecked" : false
        }
    }
}