#import <Foundation/NSObject.h> 
#import <Foundation/NSString.h> 

 int main (int argc, char *argv[]) { 

     NSString* myString = [NSString string]; //문자열선언 
     myString =@"Hello World!";
     
     NSLog(myString);  
     
     id myString2 = [NSString string];
     myString2 =@"자바스크립트의var 처럼 익명으로 사용할수도 있네";
     NSLog(myString2); 
     
     
     system ("PAUSE"); 

 } 

출처: http://www.otierney.net/objective-c.html.ko

주요 컨텐츠

개요


•시작하기
◦이 튜토리얼 다운로드
◦환경설정
◦머리말
◦hello world 만들기
•클래스 만들기
◦인터페이스: @interface
◦구현: @implementation
◦모두 합하기
•세부적인 내용들
◦매개변수를 여러 개 갖는 경우
◦생성자
◦접근 권한
◦클래스 수준 접근성
◦예외처리
•상속, 다형성, 그리고 다른 객체 지향 프로그래밍의 기능들
◦id 형
◦상속, 다형성, 그리고 다른 객체 지향 프로그래밍의 기능들
◦동적 형
◦카테고리
◦포징
◦프로토콜
•메모리 관리
◦Retain과 Release
◦Dealloc
◦Autorelease Pool
•Foundation Framework 클래스
◦NSArray
◦NSDictionary
•장단점
•추가 정보

윈도우즈에서 오브젝트 C 개발하기

http://www.appsnext.com/ 사이트  괜찮네요

image

 

 

#import <Foundation/NSObject.h>
#import <Foundation/NSString.h>

int main (int argc, char *argv()){
 
 NSLog(@"Hello World");
 system("PAUSE");
    
}

아래내용을 따라 해도안되시는 분
그냥 처음동기화 시킨 PC 의 설정파일을 덮어씌우시면 됩니다.

다만 집 pc / 회사 pc 설정(폴더등등)이 틀리기 때문에 다시 잡아주어야 하는 부분도 있습니다. 
그리고 응용프로그램도 다 없어져 버리네요
저는 다 수동관리하니깐 상관없는데 참고하세요


설치된 아이툰스 폴더에 가면 저렇게 파일이 있습니다.

또다른 음악수동관리를 하고싶은 컴퓨터에 위의 설정파일을 덮어 씌웁니다.



아래는 두대의 pc의 키값을 똑같이 만들어서 동기화 하게하는 방법입니다.
참고 URL :http://www.andrewgrant.org/2008/03/30/how-to-sync-an-iphone-with-two-or-more-computers.html 

How to sync an iPhone with two (or more) Computers

Backup Your Library

On the machine you want to sync with, backup "iTunes Music Library.xml" and "iTunes Music Library" (Tunes Music Library.itl on PC) to a safe location. These are the files you will be modifying.

1) Find your iTunes Library ID

On the machine your iPhone currently syncs with, open "iTunes Music Library.xml" with a text editor and find the entry between the <string></string> tags, after "Library Persistent ID". In the example below this is 8B6C633F7DACB74B. Copy this entry exactly to a piece of paper, email, temporary file etc. You can then close this file.

sync_notepad

2) Change your Library ID

iTunes stores your library information in two places. An XML file and a binary file. You now need to change the ID in both so they match your other library.

Make sure iTunes is not running.

On the machine you want to sync with open "iTunes Music Library.xml" in a text editor. Again, find the entry between the <string></string> tags after "Library Persistent ID" and copy this entry exactly. This time you can use the clipboard if you wish.

When you have a copy, replace this entry with the one you copied in part 1. Make sure you do not change anything else, and the length of the entry is 16 characters/digits. Save this file and close it.

windowslivewriterhowtosynca

In the Hex Editor, open "iTunes Music Library" (Tunes Music Library.itl on PC).

Select "Find and Replace" from the Edit menu. Make sure "Hex" matching is selected (not ASCII). In "Find" enter the ID you took a note of in Part 1. In Replace, enter the ID you copied at the start of Part 2. Choose Replace All, there should be one match.

Save this file and close it.

sync_hex

Success!

Start iTunes on the machine you wish to sync with and plug in your iPhone. When you select "Manually manage music and videos" you will no longer be prompted to erase your data, nor will the files on your iPhone be grayed out

VM Ware에 맥os를 설치하는데 필요한 파일입니다.

Modify virtual machine settings

VM 웨어를 만들고 나면 설치하고 나서

프로젝트 생성하고 나서 내가_생성한_VM프로젝트명.vmx 파일을 수정해준다.

guestOS = "darwin10-64"

+ Recent posts