This is a simulated driving game in which players need to drive a car safely to the right
parking spot. When driving a car, players need to be careful not to bump into other cars, and
multiple collisions can lead to failure.
Level Selection Controller (WNXSelectStageViewController)
The level selection controller UIScrollView realize scrollWizard into 24 WNXStageListView (of course, you can also create their own cache pool reuse, personally feel that no need), each WNXStageListView has a corresponding level information model stageModel, the model attributes from the project -> Resources-> Plist-> stages.plist file to read, according to the member variables in the model, load the level corresponding to the information, such as level pictures, whether to unlock, the player's history score and rank markers.
Each WNXStageListView, according to the ID set a different Tag, and provides the click gesture in the stageView click event. Call the navigation controller, Push to the WNXPrepareViewController controller, and select the stageModel as an argument to pass, WNXPrepareViewController to make the appropriate The display can be.