iOS				
			
										2014.03.18 21:45				
				좌우 슬라이딩 패널 - JASidePanels
																																			조회 수 1015					추천 수 0					댓글 0									
				
							| 첨부 '6' | 
|---|
좌우 양쪽에 슬라이딩패널 두어 보다 다양한 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

# 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"]];
}Who's hooni
								| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 | 
|---|---|---|---|---|---|
| 108 | iOS | 
				
								
					Block기반 UIAlertView 오픈소스 - AHAlertView				
																								 | 
																																										hooni | 2014.03.18 | 1083 | 
| 107 | iOS | 
				
								
					HUD 오픈소스 - MBAlertView				
																								 | 
																																										hooni | 2014.03.18 | 748 | 
| 106 | iOS | 
				
								
					트위터 동영상공유앱 Vine의 메뉴 구현하기 - REMenu				
																								 | 
																																										hooni | 2014.03.18 | 908 | 
| 105 | iOS | 
				
								
					달력 오픈 소스 - ABCalendarPicker				
																								 | 
																																										hooni | 2014.03.18 | 898 | 
| 104 | iOS | 
				
								
					커스텀 슬라이더 - TB_CircularSlider				
																								 | 
																																										hooni | 2014.03.18 | 827 | 
| 103 | iOS | 
				
								
					폴딩,플립 화면전환 오픈소스 - MPFoldTransition				
																								 | 
																																										hooni | 2014.03.18 | 1104 | 
| 102 | iOS | 
				
								
					Xcode플러그인관리 플러그인 - JDListInstalledPlugins				
																								 | 
																																										hooni | 2014.03.18 | 752 | 
| 101 | iOS | 
				
								
					부분범위 지정 컨트롤 - ACVRangeSelector				
																								 | 
																																										hooni | 2014.03.18 | 818 | 
| » | iOS | 
				
								
					좌우 슬라이딩 패널 - JASidePanels				
																								 | 
																																										hooni | 2014.03.18 | 1015 | 
| 99 | iOS | 
				
								
					텍스트 자동완성기능이 추가된 UITextField - HTAutocompleteTextField				
																								 | 
																																										hooni | 2014.03.18 | 817 | 
| 98 | iOS | 
				
								
					수치표시 슬라이더 - NYSliderpopover				
																								 | 
																																										hooni | 2014.03.18 | 866 | 
| 97 | iOS | 
				
								
					이미지명 자동완성 Xcode 플러그인 - KSImageNamed-Xcode				
																								 | 
																																										hooni | 2014.03.18 | 1005 |