본문 바로가기

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

COUNTDOWN TIMER Explaining each steps to create your COUNTDOWN TIMER:- Step 1: Create a New Project. 1) Launch a Xcode and create a new project with a new Project with a singleView template which will work as entry point for project and give CoundownTimer2 as project name and class prefix as CoundownTimer2. Uncheck StoryBord if you want you you can use StoryBord also ,Uncheck UnitTest option and let ARC remain .. 2015. 11. 19.
애플개인정보 일부 17.2 Apps that require users to share personal information, such as email address and date of birth, in order to function will be rejected 앱이 기능하기 위해 이메일 주소 또는 생일같은 개인정보의 공유(share)를 요구하는 앱은 거절될 것이다. (역자주1 : 앱을 이용하기 위해 회원가입이 필요하고 동시에 이메일을 포함한 개인정보를 요구하면 거절된다.) (역자주2 : 회원가입을 위해 단순히 아이디와 비밀번호만 입력하면 허용된다.) (역자주3 : 회원가입시 개인정보가 선택사항이면 또한 허용된다.) 아래 3 문장은 애플 리뷰어 이메일에서 발취합니다.(공식 리뷰 가이드 라인은 아니지만 아래 문장이 애플.. 2015. 11. 14.
[About] Test Apps in Facebook Test Apps Similar to Test Users, Test Apps let you quickly create Facebook App IDs for use during the development, testing, staging or QA phases of the app development lifecycle.Test Apps are like regular apps in that they have their own App ID and independent settings, but they offer a number of advantages for use during pre-production: Test Apps share the same app-scoped User ID namespace as y.. 2015. 11. 9.
Integrating Facebook Login in iOS App – The Manual Way written by appcoda Integrating Facebook Login in iOS App – The Manual Waymay 30, 2014 by gabriel theodoropoulos 15 commentsIn my previous tutorial, I presented an easy and fast way to implement the login with Facebook feature. Based on theFBLoginView class, I demonstrated how logging in and out from Facebook can be done in really a few minutes with the assistance of a predefined login button. In.. 2015. 11. 9.
CMDeviceMotion CMDevice​MotionWritten by Nate Cook — October 28th, 2014Beneath the smooth glass of each shiny iPhone, nestled on a logic board between touch screen controllers and Apple-designed SoCs, the gyroscope and accelerometer sit largely neglected.Need it be so? The Core Motion framework makes it surprisingly easy to harness these sensors, opening the door to user interactions above and beyond the tappi.. 2015. 11. 5.
Unwind Segues in iOS Storyboards written by http://spin.atomicobject.com/2014/10/25/ios-unwind-segues/ BY: MIKE WOELMERI am a Senior Software consultant at Atomic Object working lately on iOS.POSTED INDeveloper ToolsOctober 25, 2014by: Mike Woelmer16 CommentsUnwind Segues in iOS StoryboardsIntroduced in 2012 with iOS 6, Unwind Segues give you a way to “unwind” the navigation stack and specify a destination to go back to. The fi.. 2015. 10. 10.
The official raywenderlich.com Objective-C style guide. written by : https://github.com/raywenderlich/objective-c-style-guide The official raywenderlich.com Objective-C style guide.This style guide outlines the coding conventions for raywenderlich.com.IntroductionThe reason we made this style guide was so that we could keep the code in our books, tutorials, and starter kits nice and consistent - even though we have many different authors working on t.. 2015. 10. 2.
xcode @property self variable null 0down votefavoriteI have two Objective-C classes that communicate data with each other by passing variables through method parameters. For example I might call a method that will pass a variable:ClassX *x = [[ClassX alloc] init]; [x passThisParameter:i];The variable is successfully received by ClassX inside of the passThisParameter method. I can confirm this with breakpoints and log output:- (vo.. 2015. 10. 2.
Xcode 정리 출처 : http://m.blog.naver.com/zparkx/100809974 오브잭티브-씨 래퍼런스 가이드 메모 정리 오브잭티브는 OOP. 즉 객채 지향중심으로 프로그래밍을 합니다. C++에서 클래스의 내부 변수는 맴버변수라고 하지만 오브잭티브에서는 인스턴스 변수라고 합니다.이것은 객채지향적 표현으로 프로티지(소유자, 혹은 재산) 라고 한다는점을 기역해둡시다.C++에서 클래스의 맴버함수는 오브잭티브에서는 메소드(method)라고 부릅니다.(의미는 다른분야에도 사용되니 기역해둡시다)보통 인스턴스 변수는 해당 객체의 액서스 메소드를 이용하여 접근합니다.즉, get 함수와 put함수를 사용하게 되는데 보통 get 함수는 해당 인스턴스 변수와 같은 이름으로 합니다. 예> @interface 클래스이름 : .. 2015. 10. 2.