ios自定义下拉菜单Demo

时间:2016-08-28 06:53:37
【文件属性】:

文件名称:ios自定义下拉菜单Demo

文件大小:35KB

文件格式:ZIP

更新时间:2016-08-28 06:53:37

ios 下拉菜单

ios自定义下拉菜单Demo,非常简单的例子,直接使用就可以的。 if (showList) {//如果下拉框已显示,什么都不做 return; }else {//如果下拉框尚未显示,则进行显示 CGRect sf = self.frame; sf.size.height = frameHeight; //把dropdownList放到前面,防止下拉框被别的控件遮住 [self.superview bringSubviewToFront:self]; tv.hidden = NO; showList = YES;//显示下拉框 CGRect frame = tv.frame; frame.size.height = 0; tv.frame = frame; frame.size.height = tabheight; [UIView beginAnimations:@"ResizeForKeyBoard" context:nil]; [UIView setAnimationCurve:UIViewAnimationCurveLinear]; self.frame = sf; tv.frame = frame; [UIView commitAnimations];


【文件预览】:
listDemo
----listDemo()
--------ListViewController.h(225B)
--------main.m(338B)
--------listDemo-Info.plist(1KB)
--------Default.png(6KB)
--------DropListView.m(4KB)
--------AppDelegate.h(279B)
--------AppDelegate.m(2KB)
--------Default-568h@2x.png(18KB)
--------.DS_Store(6KB)
--------ListViewController.m(1KB)
--------listDemo-Prefix.pch(319B)
--------Default@2x.png(16KB)
--------DropListView.h(689B)
--------en.lproj()
----listDemo.xcodeproj()
--------project.xcworkspace()
--------project.pbxproj(13KB)
--------xcuserdata()
----.DS_Store(12KB)

网友评论

  • 下拉选择还可以,实现了当时需要的需求。不过现在都不用这种效果了。
  • 这个真可以,提供了4种完全不同形式的下拉菜单,自己已经选择其中一种,谢谢! .
  • 这个真可以,提供了4种完全不同形式的下拉菜单,自己已经选择其中一种,谢谢!
  • 这也太粗制滥造了吧,还特么5分,真好意思,学习可以,拿来用就呵呵
  • 要是能批量实现多个就好了
  • 很不错的借鉴效果
  • 这个demo所实现的代码正是在下想要的。
  • 还可以,代码比较简单易懂
  • 是我想要的效果