文件名称: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)