Views 284 Votes 0 Comment 0
Atachment
Attachment '6'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
좌우 양쪽에 슬라이딩패널 두어 보다 다양한 UI구성이 가능한 JASidePanels을 소개합니다.
아이폰, 아이패드에서 동작합니다.

이 소스를 사용해 개발된 앱
Scribd - http://itunes.apple.com/us/app/scribd-worlds-largest-online/id542557212?ls=1&mt=8
Float Reader - http://itunes.apple.com/us/app/float-reader/id447992005?ls=1&mt=8

다운로드는 첨부파일 또는 아래링크를 참조하세요.
https://github.com/gotosleep/JASidePanels

이밖에 이것과 유사한 UI로 구현된 다른 프로젝트 링크
DDMenuController - https://github.com/devindoty/DDMenuController
JTRevealSidebarDemo - https://github.com/mystcolor/JTRevealSidebarDemo
ECSlidingViewController - https://github.com/edgecase/ECSlidingViewController
ViewDeck - https://github.com/Inferis/ViewDeck
ZUUIRevealController - https://github.com/pkluz/ZUUIRevealController
GHSidebarNav - https://github.com/gresrun/GHSidebarNav

JASidePanels4.jpg

JASidePanels5.jpg

# Example 1 : Code
#import "JAAppDelegate.h"

#import "JASidePanelController.h"
#import "JACenterViewController.h"
#import "JALeftViewController.h"
#import "JARightViewController.h"

@implementation JAAppDelegate

@synthesize window = _window;
@synthesize viewController = _viewController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    self.viewController = [[JASidePanelController alloc] init];
    self.viewController.leftPanel = [[JALeftViewController alloc] init];
    self.viewController.centerPanel = [[UINavigationController alloc] initWithRootViewController:[[JACenterViewController alloc] init]];
    self.viewController.rightPanel = [[JARightViewController alloc] init];

    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];
    return YES;
}


@end

# Example 2 : StoryBoard
-(void) awakeFromNib
{
  [self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"leftViewController"]];
  [self setCenterPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"centerViewController"]];
  [self setRightPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"rightViewController"]];
}

?

  1. 뉴스스탠드 매거진 템플릿 - ADVNewsstandTemplate

    Date2014.03.18 CategoryiOS Byhooni Views275
    Read More
  2. iOS용 아날로그 시계 오픈소스 - BEMAnalogClock

    Date2014.07.01 CategoryiOS Byhooni Views274
    Read More
  3. 국가옵션 선택시 유용한 예제 - GzCountryTableView

    Date2014.03.18 CategoryiOS Byhooni Views274
    Read More
  4. 3D 차트 오픈소스 FRD3DBarChart

    Date2014.03.18 CategoryiOS Byhooni Views274
    Read More
  5. switch 문 자동완성 Xcode 플러그인 - SCXcodeSwitchExpander

    Date2014.07.01 CategoryiOS Byhooni Views273
    Read More
  6. SpaceGame - 슈팅게임

    Date2014.03.18 CategoryiOS Byhooni Views272
    Read More
  7. 풀스크린모달뷰 - MZFormSheetController

    Date2014.03.19 CategoryiOS Byhooni Views271
    Read More
  8. 페이징 그리드뷰 오픈소스 - SCPagingGridView

    Date2014.03.18 CategoryiOS Byhooni Views271
    Read More
  9. 팝업뷰 예제 입니다.

    Date2014.03.18 CategoryiOS Byhooni Views271
    Read More
  10. 문자열 포맷형식 자동완성 Xcode 플러그인 - HOStringSense

    Date2014.07.01 CategoryiOS Byhooni Views269
    Read More
  11. plist로 테이블뷰 구성하기 - DrillDownApp

    Date2014.03.18 CategoryiOS Byhooni Views269
    Read More
  12. 얼굴인식해 문자를 3D로 보여주는 소스 - EVFaceTracker

    Date2014.03.18 CategoryiOS Byhooni Views267
    Read More
  13. iOS 7 스타일 배경흐림 뷰 컨트롤러 - REFrostedViewController

    Date2014.03.19 CategoryiOS Byhooni Views265
    Read More
  14. 팝업 달력 - PMCalendar

    Date2014.03.18 CategoryiOS Byhooni Views264
    Read More
  15. 맥의 Dock을 iOS에서 구현하기 - MCSFishEye

    Date2014.03.19 CategoryiOS Byhooni Views263
    Read More
  16. 메세징 라이브러리 - SOMessaging

    Date2014.07.01 CategoryiOS Byhooni Views262
    Read More
Board Pagination Prev 1 4 5 6 7 8 ... 15 Next
/ 15