본문 바로가기

모바일개발(Mobile Dev)/IOS개발(ObjectC)109

iOS 디바이스별 화면 구성요소 치수들 iOS 기기용 웹앱이나 네이티브앱 개발시 유용하게 사용될 수 있는 치수들입니다. 특히, 모든 iOS 기기를 지원하는(유니버셜) 앱을 개발할 때 자주 찾게 되는 자료중 하나입니다. 스테이터스 바, 네비게이션 바, 탭 바, 키보드 등의 사이즈를 세웠을 때와 눕혔을 때로 구분하여 측정했습니다.아이폰의 화면 치수아이폰에서 해상도를 계산할 때 굳이 레티나 디스플레이의 해상도(640 x 960)를 의식하여 계산할 필요는 없습니다. 단순히 이미지가 사용되는 곳에 더블픽셀(@x2)의 고해상도 이미지를 한 셋트 더 준비하면 된다는 사실만 기억하세요.PORTRAIT - 세웠을 때앱 시작시 나타나는 오프닝 이미지는 기본으로 320 x 367 픽셀의 "filename.png"로 설정하고 레티나용으로 표시될 이미지는 640 x.. 2015. 1. 14.
Xcode 단축키 정리 1. 기본적인 에디팅에 관련된 것들Option + Left or Right : 단어 단위로 커서를 이동합니다.Command + Left or Right : 줄의 맨 앞/뒤로 커서를 이동합니다.Command + ] or [ : 현재 선택된 블럭의 코드를 한 탭만큼 들여쓰기 내여쓰기를 합니다.Option + Tab : Tab이 공백문자로 치환되도록 설정되어 있더라도 강제로 Tab을 입력합니다.Command + L : 특정 라인 위치로 이동합니다.ESC : 자동 완성 가능한 후보 목록을 보여줍니다.Option + delete : 단어 단위로 삭제하기.Command + delete : 전체 줄 삭제하기. (Command + Right 후 Command + delete하면 전체 줄이 삭제 됨)Command + R.. 2015. 1. 14.
Xcode와 GitHub 연동하기 Xcode와 GitHub 연동하기iDev 2013/06/16 14:15Xcode 와 GitHub 연동 방법은 정말 간단하다. 기존에 Xcode 프로젝터가 Git를 소스관리 도구로 사용하고 있다는 가정하에 작성한다. 아니면 Organizer에서 리파지토리 'Add Working Copy' 버튼만 클릭해주면 끝. 우선 [그림 1] 처럼 GitHub http://github.com 사이트에 접속을 한다. 그리고 우측 중간쯤에 "New repository" 버튼을 클릭을 해서 새로운 리파지토리를 생성하도록 한다.[그림 1] [그림 2] 처럼 새로운 리파지토리 생성 페이지에서 "Repository name"에 원하는 이름을 넣고, 공개인지 개인인지 설정한 후, "Create repository" 버튼을 누른다. .. 2015. 1. 14.
IPHONE OpenSource 모음 https://github.com/digdog/DDActionHeaderView http://code.google.com/p/oauthconsumner/http://code.google.com/p/mpoauthconnection/ http://getsharekit.com/ http://code.google.com/p/nate-ios-client-api/ https://github.com/facebook/facebook-ios-sdk http://code.google.com/p/cocoaasyncsocket/ https://github.com/enormego/cocoa-helpers https://github.com/woohj70/iPhotoDiary https://www.dropbox.com/develo.. 2015. 1. 14.
IPHONE 개발 참고 자료 IPHONE 개발 참고 자료 >모든 문서는 요기에! iOS Reference LibraryCoding Guideline for Cocoa (번역본)iPhone Human Interface Guideline (번역본)Your First iOS Application (번역본)Learn C for Cocoa (번역본)Learn Objective-C (번역본)Stanford University iPhone Application Development (iTunes U)Apple Dev CenterDeveloper Forums리젝 사유 모음과 App Store Review Guideline샘플 코드 모음>오픈소스 프레임워크Google Data APIs for Cocoa DevelopersXML 파서 비교 분석>iO.. 2015. 1. 14.
아이폰 코딩 총정리 원문 : http://improgrammer.com/12 KT앱 대회 준비하면서 모은 자료들을 정리해서 올립니다. 거의 맥부기 카페 자료들이 대부분인데 한곳에 모아서 찾아보기 쉬우라고 올려봅니다. -푸쉬 서버 개발 관련 자료- 이지 APNS 오픈 소스 라이브러리 http://www.easyapns.com/ 구글 코드 APNS 오픈 소스 http://code.google.com/p/apns-php/ 서버 튜토리얼 http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/ -label이나 textView에 현재 시간을 표시하고 싶습니다- NSDate *t = [NSDate date]; .. 2015. 1. 14.
Fixing file 'project.pch' has been modified since the precompiled header was built error in Xcode Fixing file 'project.pch' has been modified since the precompiled header was built error in Xcodeup vote38down votefavorite19I was recently working on my application messing around in the info.plist section, and since that my application will not run on my test device. I am new to the whole iOS development and Xcode so any help fixing my issue would be greatly appreciated! Something to note is t.. 2015. 1. 14.
refresh a tableview after popping from a navigation stack Thread Tools Search this Thread Display Modes Old Dec 17, 2011, 03:03 PM #1tutiplainmacrumors member Join Date: Feb 2011refresh a tableview after popping from a navigation stackHi all, I have two UIViewControllers inside a navigation interface. The first one has a UITableView inside it (The view controller itself is both datasource and delegate). When one particular row is touched, the navigatio.. 2015. 1. 14.
멀티태스킹 관련 & C++ basic from http://kapps.co.kr/bbs/board.php?bo_table=m52&wr_id=8&page=2 --------------------------------------------------------------------- 멀티태스킹 관련 가장 큰 변경사항은 멀티태스킹입니다. 이로인해 어플리케이션이 백그라운드로 실행될 수 있기때문에 이와 관련된 메소드들이 많이 추가되었습니다. 백그라운드로 전환되어 대기상태가 될때는 OpenGL ES 메소드를 호출한다거나 네트워크을 사용하지 말아야하며 주소록 같은 시스템 리소스도 해제해야합니다. 많은 메모리를 사용하고 있다면 이역시 해제해야합니다. 만약 메모리와 같은 시스템 리소스가 부족하면 백그라운드에서 실행중인 어플리케이션이 먼저 제거대상이됩니다. .. 2015. 1. 14.