Contents

Views 923 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. 포켓몬 게임 - iPokeMon

    Date2014.03.18 CategoryiOS Byhooni Views963
    Read More
  2. 메세징 라이브러리 - SOMessaging

    Date2014.07.01 CategoryiOS Byhooni Views960
    Read More
  3. 지역화 코드 자동완성 Xcode 플러그인 - Lin

    Date2014.07.01 CategoryiOS Byhooni Views954
    Read More
  4. 스크롤타입 달력픽커 - DayFlow

    Date2014.03.18 CategoryiOS Byhooni Views952
    Read More
  5. Placeholder값을 텍스트필드의 타이틀로 바꿔주는 커스텀 컨트롤 - JVFloatLabeledTextField

    Date2014.03.19 CategoryiOS Byhooni Views952
    Read More
  6. JSON 데이터를 스위프트 코드로 자동 변환해주는 맥용 오픈소스 - JSONExport

    Date2014.11.28 CategoryiOS Byhooni Views951
    Read More
  7. 사진첩 컨트롤 - PhotoStack

    Date2014.03.19 CategoryiOS Byhooni Views950
    Read More
  8. 커스텀 스크롤 페이지 컨테이너 - DAPagesContainer

    Date2014.03.19 CategoryiOS Byhooni Views950
    Read More
  9. Pull to Refresh + 탁구 = BOZPongRefreshControl

    Date2014.03.19 CategoryiOS Byhooni Views941
    Read More
  10. 국가옵션 선택시 유용한 예제 - GzCountryTableView

    Date2014.03.18 CategoryiOS Byhooni Views938
    Read More
  11. 자동스크롤 업다운 컨트롤 - KLScrollSelect

    Date2014.03.18 CategoryiOS Byhooni Views936
    Read More
  12. 커스텀 뷰 컨트롤러 트랜지션 - TB_CustomTransition

    Date2014.03.19 CategoryiOS Byhooni Views935
    Read More
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 19 Next
/ 19