Contents

조회 수 284 추천 수 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"]];
}


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
167 iOS UIWebView에서 한글 txt 파일 정상적으로 표시 file hooni 2014.03.18 277
166 iOS Xcode 플러그인 ColorSense file hooni 2014.03.18 277
165 iOS Xcode플러그인관리 플러그인 - JDListInstalledPlugins file hooni 2014.03.18 202
164 iOS XML 파싱을 쉽게 해주는 TBXML file hooni 2014.03.18 211
163 iOS [ios] iOS Custom Pull-to-Refresh Control Tutorial (Updated for Swift) file hooni 2015.10.29 1300
162 iOS [ios] UIView+Frame file hooni 2015.10.06 574
161 iOS [ios] 애니메이션 초간단 예제 file hooni 2015.01.16 342
160 iOS 간단 프로모션 뷰 생성 오픈소스, TAPromotee file hooni 2015.07.20 628
159 iOS 간단하게 More Apps 뷰 만들기 - DAAppsViewController file hooni 2014.03.18 296
158 iOS 간단한 테이블뷰 검색예제 file hooni 2014.03.18 239
157 iOS 간단히 앱내 셋팅화면 구현이 가능한 FxForms 오픈소스 file hooni 2014.03.19 201
156 iOS 공유버튼 UI 컨트롤 - CFShareCircle file hooni 2014.03.18 221
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 19 Next
/ 19