분류 전체보기651 [ iOS 9.x -> iOS 10 ] UIFont.preferredFontForTextStyle UIFont.preferredFontForTextStyle은 미리 설정된 폰트 정보를 반환한다. iOS 9.x UIFont.preferredFontForTextStyle(UIFontTextStyleHeadline) iOS 10 UIFont.preferredFont(forTextStyle: UIFontTextStyle.headline) [출처] [swift] UILabel, UITextView 에 스타일 적용하기|작성자 프리돔 2016. 12. 1. iOS 10의 변화점 레퍼런스 : 개발자 입장에서 본 iOS 10의 변화점 2016. 11. 30. [ iOS 9.x -> iOS 10 ] dequeueReusableCellWithIdentifier, dequeueReusableCell UITableView 에서 dequeueReusableCellWithIdentifier 함수를 통해서 데이터를 다시 불러와 cell 화면을 구성합니다. iOS 10에서는 사용법이 다음과 같이 바뀌었습니다. [출처] ios UITableView Cell을 dequeueReusableCellWithIdentifier 통해서 조회할때 항상 nil ???|작성자 달망망이 iOS 9.x override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = self.tableView.dequeueReusableCellWithIdentifier("Attractio.. 2016. 11. 29. [ iOS 9.x -> iOS 10 ] 세그웨어 (Segue) 화면 전환 시 데이터를 전달하기 위해서 사용하는 메소드가 iOS 10 에서는 prepare로 변경이 되었습니다. iOS 9.x override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { let destination = segue.destination as! Scene2ViewController destination.labelText = "Arrived from Scene 1" } iOS 10 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { let destination = segue.destination as? Scene2ViewController des.. 2016. 11. 25. 마이 스타벅스 리워드, 드디어 골드 레벨 올해 들어서 밖에서 사람을 많이 만나다 보니 커피를 자주 마식게 됐다.우연히 알게된 스타벅스의 마이 스타벅스 리워드이왕 마시는 커피 나도 골드 레벨(Gold Level) 함 되보자는 생각에 가능하면 스타벅스에서 커피를 마셨다.어짜피 동네 1500 아메리카노 먹는게 아니면 대부분의 커피 체인의 커피 가격이 비싸기로는 비슷해서... 스타벅스로 언제 골드 레벨(Gold Level) 되나 했는데... 오늘 드디어 골드 레벨(Gold Level) ^^뭐.. 시작은 별 이유 없이 골드 레벨(Gold Level) 되보자는 생각에 시작했는데, 막상 되고 보니 이 뿌듯함은 뭔지 ㅡㅡ; 골드 레벨이 되려면 별 하나만 있으면 되는 상황에서 별을 무려 3개나 더 준다고 해서 평소 잘 먹지 않던 모카를 주문.3가지 음료 중에 .. 2016. 11. 10. Reference 전체화면(StatusBar, ActionBar 숨기기)ActionBar 정리Android Icon 쉽게 만들기 2016. 11. 4. No resource identifier found for attribute 'srcCompat' in package Android Studio 에서 Project를 생성한 후에 실행 시에 activity_main.xml 파일에서 다음과 같은 오류가 발생했다. No resource identifier found for attribute 'srcCompat' in package 이런경우, activity_main.xml 파일 안에서 "res-auto" 을 페키지 명으로 바꾸어 주면 오류가 해결된다. 2016. 11. 4. 이전 1 ··· 8 9 10 11 12 13 14 ··· 93 다음