Contents

조회 수 923 추천 수 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. 페이스북처럼 이미지뷰UI 만들기 - MHFacebookImageViewer

    Date2014.03.18 CategoryiOS Byhooni Views1059
    Read More
  2. 그리드형식 팝업모달뷰 컨트롤 - RNGridMenu

    Date2014.03.18 CategoryiOS Byhooni Views1046
    Read More
  3. Swift로 개발된 2048 게임 오픈소스 - swift-2048

    Date2014.07.01 CategoryiOS Byhooni Views1042
    Read More
  4. [ios] 애니메이션 초간단 예제

    Date2015.01.16 CategoryiOS Byhooni Views1041
    Read More
  5. 간단하게 More Apps 뷰 만들기 - DAAppsViewController

    Date2014.03.18 CategoryiOS Byhooni Views1040
    Read More
  6. 오픈소스라이브러리 Three20

    Date2014.03.18 CategoryiOS Byhooni Views1040
    Read More
  7. 재정렬가능한 UICollectionViewFlowLayout - LXReorderableCollectionViewFlowLayout

    Date2014.03.18 CategoryiOS Byhooni Views1034
    Read More
  8. 트위터 타임라인 읽어오는 간단한 앱 - ADVNewsFeeder

    Date2014.03.18 CategoryiOS Byhooni Views1033
    Read More
  9. UITableView 를 커스터마이징한 예제입니다.

    Date2014.03.18 CategoryiOS Byhooni Views1028
    Read More
  10. 업데이트 내용을 출력하자, 릴리즈노트뷰 - TWSReleaseNotesView

    Date2014.03.19 CategoryiOS Byhooni Views1025
    Read More
  11. 줌, 커튼, 젤리 뷰변환 효과 - BCMeshTransformView

    Date2014.07.01 CategoryiOS Byhooni Views1022
    Read More
  12. 앱 사용 가이드 템플릿 오픈소스 - BWWalkthrough

    Date2014.10.06 CategoryiOS Byhooni Views1019
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 19 Next
/ 19