IOS 코드 노트 드 롭 다운 메뉴 효과

본 논문 의 사례 는 ios 드 롭 다운 메뉴 의 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
효과 도


2.공정 도

코드
RootViewController.h

#import <UIKit/UIKit.h>

@interface RootViewController : UIViewController

@end 

 
RootViewController.m

#import "RootViewController.h"
#import "NIDropDown.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.title=@"DropDown";
 
 UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect];
 button.frame=CGRectMake(10, 100, 150,30);
 button.backgroundColor=[UIColor redColor];
 [button addTarget:self action:@selector(doClickAction:) forControlEvents:UIControlEventTouchUpInside];
 [self.view addSubview:button];
 
 
 
 
}
-(void)doClickAction:(UIButton *)btn
{
 NSArray *dataArray=[NSArray arrayWithObjects:@"1",@"2",@"3",@"4",@"5", nil];
 
 NIDropDown *dropDown=[[NIDropDown alloc]init];
 [dropDown showDropDown:btn andHeight:[dataArray count]*36 andData:dataArray];
 [self.view addSubview:dropDown];
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기