Xcode 썸네일형 리스트형 remove NSTabView, NSTableView item programmatically // NSTabView [pTabView removeTabViewItem:[pTabView tabViewItemAtIndex:nIdx]]; // NSTableView // szID : TableView's column Identifier // get using [tableClumn identifier] [pTableView removeTableColumn:[pTableView tableColumnWithIdentifier:szID]]; [reference]NSTabViewhttp://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSTabView_Class/Reference/Reference.htm.. 더보기 set info.plist preprocessor * Preprocessing Info.plist files in Xcode Using the C Preprocessor1. open project Info2. goto Build->Packaging3. check Preprocess Info.plist File- do this for both the Debug & Release configurations.4. set Info.plist Other Preprocessor Flags : -C5. set Info.pList Preprocessor Definitions : PLIST_PREPROSSOR code. CFBundleDevelopmentRegion English CFBundleExcutable ... #ifdef PLIST_PREPROSSOR 1.5... 더보기 xcode preprocessor setting open project Info project -> Edit Project Settings -> Build or Mouse righit button click from project then click Get Info -> Build find GCC 4.2 - Language ( your version may not be right ) set Other C Flags // e.g if you want use _MY_DEBUG_ #ifdef _MY_DEBUG_ _degug(); #endif // _MY_DEBUG_ -D_MY_DEBUG_ = 1 don't care about Other C++ Flags.. 더보기 이전 1 다음