這是一個點擊按鈕出現下拉列表的例子。
下載地址:http://pan.baidu.com/s/1o62mYJg http://download.csdn.net/detail/qqmcy/7100541
效果圖
下面是使用的代碼:<喎?/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+0OjSqr2rwP3X07mks8zW0LXERXhwYW5kQnRuzsS8/rzQv7zI68TjtcS5pLPM1tCjrMD919PJ1Lrzvs274cnPtKuwoaGjPGJyPgo8L3A+CjxwPlZpZXdDb250cm9sbGVyLm08YnI+CjwvcD4KPHA+PC9wPgo8cD48L3A+CjxwcmUgY2xhc3M9"brush:java;">//
// ViewController.m
// 點擊按鈕出現下拉列表
//
// Created by 杜甲 on 14-3-26.
// Copyright (c) 2014年 杜甲. All rights reserved.
//
// 角度轉弧度
#define CC_DEGREES_TO_RADIANS(__ANGLE__) ((__ANGLE__) * 0.01745329252f) // PI / 180
// 弧度轉角度
#define CC_RADIANS_TO_DEGREES(__ANGLE__) ((__ANGLE__) * 57.29577951f)
#import "ViewController.h"
#import "Btn_TableView.h"
@interface ViewController ()
@property (strong , nonatomic) Btn_TableView* m_btn_tableView;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.m_btn_tableView = [[Btn_TableView alloc] initWithFrame:CGRectMake(100, 100, 100, 50)];
self.m_btn_tableView.delegate_Btn_TableView = self;
//按鈕名字
self.m_btn_tableView.m_Btn_Name = @"神奇";
//數據內容
self.m_btn_tableView.m_TableViewData = @[@"1",@"ff",@"bb",@"007",@"oiytr"];
[self.m_btn_tableView addViewData];
[self.view addSubview:self.m_btn_tableView];
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
-(void)changeOrientationNinty:(UIView *)view
{
view.transform = CGAffineTransformMakeRotation(CC_DEGREES_TO_RADIANS(90));
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end