Wednesday, May 22, 2013

ECSlidingViewController 使用筆記

 點選選項時,不要讓topView蓋過:
//[self.slidingViewController resetTopView];

換VC,但不要讓VC縮往右邊
//  [self.slidingViewController anchorTopViewOffScreenTo:ECRight animations:nil onComplete:^{
//    CGRect frame = self.slidingViewController.topViewController.view.frame;
//    self.slidingViewController.topViewController = newTopViewController;
//    self.slidingViewController.topViewController.view.frame = frame;
//    [self.slidingViewController resetTopView];
//  }];
CGRect frame = self.slidingViewController.topViewController.view.frame;
self.slidingViewController.topViewController = newTopViewController;
self.slidingViewController.topViewController.view.frame = frame;
//    [self.slidingViewController resetTopView];

不要讓topVC被拉過頭。
self.shouldAllowPanningPastAnchor = NO;

不要讓topVC可以被拖回原位。
self.resetStrategy = ECNone;

讓topVC往右移
[self.slidingViewController anchorTopViewTo:ECRight];



減少topVC往右移動時間
 [UIView animateWithDuration:0.0f animations:^{

設定topVC往右移動位置
[self.slidingViewController setAnchorRightRevealAmount:100.0f];






.

ECSlidingViewController and other similar UI


Alternatives

Other projects implementing a similar UI





.

Thursday, May 9, 2013

RAYWENDERLICH - iPhone Tutorials

RAYWENDERLICH - iPhone Tutorials




Beginning Objective-C

iOS 6 Tutorials

iOS 5 Tutorials

Making Games with UIKit

Beginning Game Programming with Cocos2D

Beginning Game Programming with Corona

Beginning Game Programming with Unity

Intermediate Game Programming with Cocos2D

Cocos2D Tools

Advanced Game Programming with OpenGL

Other Game Engines

Game Physics

Other Game Programming Topics

Saving and Loading Data

Graphics and Animation

Network Programming

Making Money

Audio

iPad Development

3rd Party Libraries

Other iPhone Tutorials

Other Tutorials



.

Top 10 iOS Conferences in 2013

Top 10 iOS Conferences in 2013



.

Code School - Try Objective-C

Code School - Try Objective-C

初學者等級的


.




Thursday, May 2, 2013

App程式設計流程

設計User Case
設計ER圖
建立Data Model

依照wire frame訂定工作時間
訂定甘特圖


.