Contents

조회 수 285 추천 수 0 댓글 0
Atachment
첨부 '6'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
좌우 양쪽에 슬라이딩패널 두어 보다 다양한 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. Xcode 플러그인 ColorSense

    Date2014.03.18 CategoryiOS Byhooni Views277
    Read More
  2. 뉴스스탠드 매거진 템플릿 - ADVNewsstandTemplate

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

    Date2014.03.19 CategoryiOS Byhooni Views277
    Read More
  4. iOS용 아날로그 시계 오픈소스 - BEMAnalogClock

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

    Date2014.07.01 CategoryiOS Byhooni Views278
    Read More
  6. Mask를 이용한 부분 Blur효과 주기 예제 - iOS7StyleMaskTransparency

    Date2014.03.19 CategoryiOS Byhooni Views279
    Read More
  7. 폴딩,플립 화면전환 오픈소스 - MPFoldTransition

    Date2014.03.18 CategoryiOS Byhooni Views280
    Read More
  8. 국가옵션 선택시 유용한 예제 - GzCountryTableView

    Date2014.03.18 CategoryiOS Byhooni Views281
    Read More
  9. 상태바에 프레임레이트 차트 띄우기 - RRFPSBar

    Date2014.03.18 CategoryiOS Byhooni Views282
    Read More
  10. Evernote API 사용 샘플 예제

    Date2014.03.18 CategoryiOS Byhooni Views284
    Read More
  11. 좌우 슬라이딩 패널 - JASidePanels

    Date2014.03.18 CategoryiOS Byhooni Views285
    Read More
  12. Pinterest 스타일 UI 구현한 또다른 예제 JSPintDemo

    Date2014.03.18 CategoryiOS Byhooni Views287
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 ... 19 Next
/ 19