代码笔记下拉菜单

Posted 菜鸟and小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记下拉菜单相关的知识,希望对你有一定的参考价值。

一,效果图。

 

二,工程图。

三,代码。

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];
}
复制代码

 

以上是关于代码笔记下拉菜单的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记-php简单联级下拉菜单输出-2016.4.7

JGUI源码:实现图标按钮及下拉菜单(16)

20款jquery下拉导航菜单特效代码分享

下拉菜单中获得数据并传到后台,js代码如何实现?

下拉菜单中怎么默认选中第一个呢,代码?(C#)

02 - Unit07:显示笔记下拉菜单笔记的分享功能笔记的删除功能