Lokvin Wiki
Line 31: Line 31:
 
==Platform Components==
 
==Platform Components==
 
[[File:ios_platformcomponents.jpg | center | 600px]]
 
[[File:ios_platformcomponents.jpg | center | 600px]]
  +
  +
==MVC ==
  +
===Model===
  +
* Model = What your application is (but not how it displayed)
  +
[[File:ios_mvc_model.jpg | center | 600px]]

Revision as of 06:34, 8 February 2014

Xcode change target name

below step works for Xcode 4.6.2

  1. in Xcode click project icon, in TARGETS direct edit target name, such as: change change ipadcn to cn_ipad
  2. in Build Settings -- Package, change the Product Name, such as: change ipadcn to cn_ipad
  3. Xcode close project, delete the xcode auto generate files, such as: *.xcscheme, ..., Xcode Re-open the project
  4. If you meet Simulate error "failed to attach to process id 0", you need clean Simulator content.
    1. reset simulator: in menu iOS Simulator --> Reset Content and Settings...
    2. back to xcode, in menu Window --> Organizer --> Projects --> Delete Derived Data

find iOS simulator location

  1. Go to ~/Applications, and right-click Xcode.
  2. Select “Show Package Contents”. A folder opens.
  3. Browse through the folder structure to “Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/”
  4. There you’ll see the “iOS Simulator.app” — it’s best to add it to the dock, so that you do not need to go through these steps again.
  5. Close all the folders, as you won’t need them to use the iOS Simulator.
  6. Start iOS Simulator from the Dock.

What's in ios

Core OS

Ios coreos

Core Services

Ios coreservices

Meida

Ios media

Cocoa Touch

Ios cocoatouch

Platform Components

Ios platformcomponents

MVC

Model

  • Model = What your application is (but not how it displayed)
Ios mvc model