IOS 코드 노트 드 롭 다운 옵션 cell

본 고 는 IOS 드 롭 다운 옵션 cell 의 사용 방법 을 소개 하 였 으 며,구체 적 인 내용 은 다음 과 같다.
효과 도
 
2.공정 도
 
코드
RootViewController.h

#import <UIKit/UIKit.h>
//     
#import "ComboBoxView.h"

@interface RootViewController : UIViewController
{
  ComboBoxView    *_comboBox;
}

@end 

RootViewController.m

#import "RootViewController.h"

@interface RootViewController ()

@end

@implementation RootViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
  self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  if (self) {
    // Custom initialization
  }
  return self;
}

- (void)viewDidLoad
{
  [super viewDidLoad];
  // Do any additional setup after loading the view.
  
  self.navigationController.navigationBarHidden=YES;
  
  
  NSArray *comboBoxDatasource = [[NSArray alloc] initWithObjects:@"one", @"two", @"three", @"four", @"five", @"six", @"seven", @"eight", nil];
  _comboBox = [[ComboBoxView alloc] initWithFrame:CGRectMake(20, 20, 280, 140)];
  _comboBox.comboBoxDatasource = comboBoxDatasource;
  _comboBox.backgroundColor = [UIColor clearColor];
  [_comboBox setContent:[comboBoxDatasource objectAtIndex:0]];
  [self.view addSubview:_comboBox];
  
  
}

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기