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"]];
}

?

List of Articles
No. Category Subject Author Date Views
68 iOS 이미지 그리드뷰 오픈소스 - BDDynamicGridViewController file hooni 2014.03.18 290
67 iOS 채팅화면 구현가능한 UIBubbleTableView file hooni 2014.03.18 231
66 iOS 안드로이드 스타일 잠김화면 만들기 file hooni 2014.03.18 315
65 iOS 3D 차트 오픈소스 FRD3DBarChart file hooni 2014.03.18 274
64 iOS 접이식 메뉴구현이 가능한 PaperFold-for-iOS file hooni 2014.03.18 253
63 iOS 아이폰 푸시알림 서비스 서버모듈 - easyapns file hooni 2014.03.18 448
62 iOS 얼굴인식해 문자를 3D로 보여주는 소스 - EVFaceTracker file hooni 2014.03.18 267
61 iOS 트리뷰형식의 테이블뷰 - SDNestedTable file hooni 2014.03.18 235
60 iOS 점프 액션 게임 - canabalt file hooni 2014.03.18 251
59 iOS Cocos2D를 이용한 전자책 개발 오픈소스 - idiary file hooni 2014.03.18 210
58 iOS Objective-C기반 3D맵 오픈소스 - EarhView file hooni 2014.03.18 223
57 iOS 테이블뷰를 대체 가능한 커스텀 라이브러리 - MGBox file hooni 2014.03.18 218
56 iOS iBooks 스타일 네비게이션 콤포넌트 - GSBookShelf file hooni 2014.03.18 213
55 iOS 스크롤시 에니메이션기능을 부각시킨 테이블뷰 - ADLivelyTableView file hooni 2014.03.18 207
54 iOS Pull-To-Refresh 기능을 코드한줄에 구현가능한 SVViewController file hooni 2014.03.18 227
53 iOS 팝업 달력오픈소스 - OCCalendar file hooni 2014.03.18 248
Board Pagination Prev 1 ... 9 10 11 12 13 15 Next
/ 15