發表文章

目前顯示的是有「mac」標籤的文章

converting CDR to ISO in MAC

Open Terminal and find the cdr file. and Type: "hdiutil makehybrid -iso -joliet -o  [NEW FILE NAME].iso [YOUR CDR FILE NAME].cdr" done

[Objective C] Detect if it is using ipad

The following code is for detecting ipad or not. #define IPAD UI_USER_INTERFACE_IDIOM () == UIUserInterfaceIdiomPad if ( IPAD ) { // iPad } else { // iPhone / iPod Touch }