2016-06-15 3 views
7

처음 사과하는 것은 초보자 질문입니다.하지만 여기서 알 수는 없으므로 여기에서 물어볼 것입니다.Xcode에서 모든 시스템 아이콘을 얻는 방법

여기에 나열된 카메라 스위치 아이콘을 스위치가 아닌 일반 아이콘으로 사용할 수 있기를 원합니다. https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/BarIcons.html

그러나 내 바 버튼 항목 아래의 Xcode에는 목록에없는 것 같습니까? enter image description here

나는 분명히 뭔가 뻔뻔스럽게 분명한 것을 알고 있습니다. 누구든지이 일을 도울 수 있습니까?

감사

+0

당신이 봤어 찾을 단지 헤더를 살펴 복용을 나열 할 경우 [이] (http://stackoverflow.com/questions/32558014/ios-how- 추가 - 사용 - 기본 아이콘 - 네비게이션 - 바 - 바 - 인 - 스위프트)? – Lucas

+0

이걸 보면 어딘가에서 아이콘 라이브러리를 다운로드해야만합니까? 그것은 카메라 스위치 아이콘을 언급하지 않는가? – user1503606

답변

4

우리는

enter image description here

당신의 목표는 1 배 및 2 개 배 아이콘을 잡아 약 this

같은 말을하는거야? 몇 가지 온라인 리소스 (무료 및 유료)가 있지만 귀하의 목표는 어떤 방식 으로든 장치에서 아이콘을 직접 가져 오는 것입니다.

당신이 그들 모두를 추출 아이디어를 가지고 here을 볼려고하는 경우에 TabBarSystemItem

self.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFavorites tag:0] 

으로 UITabBarItem 초기화에서 나오는 것들입니다.

당신이

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

플립 카메라 아이콘이 내장되어 있습니까? – okhobb

+1

Apple의'System Icons' 문서에 따르면 https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/system-icons/에는 없습니다. 그건 그렇고 여기에 좋은 하나입니다 : https://dribbble.com/shots/1819004-iOS-8-Flip-Camera-Icon – loretoparisi

관련 문제