gpt4 book ai didi

iphone - 在按钮事件中显示下拉项的代码如何?

转载 作者:行者123 更新时间:2023-11-29 13:39:36 25 4
gpt4 key购买 nike

大家好,我已经实现了点击自定义按钮时显示下拉项目的代码但它不起作用 ios5 提供了显示下拉项目的解决方案,这对我来说在 iphone 中太紧急了。

 units = [[NSMutableArray alloc] initWithObjects:@"Metric(metres)",@"Imperial(feets)",nil];
dropDownView = [[DropDownView alloc] initWithArrayData:units cellHeight:30 heightTableView:60 paddingTop:-8 paddingLeft:-5 paddingRight:-10 refView:dropdownButton animation:BLENDIN openAnimationDuration:0 closeAnimationDuration:0];
dropDownView.delegate = self;
[dropdownButton setTitle:@"Metric(metres)" forState:UIControlStateNormal];
[self.view addSubview:dropDownView.view];
}
-(void)dropDownCellSelected:(NSInteger)returnIndex{

[dropdownButton setTitle:[units objectAtIndex:returnIndex] forState:UIControlStateNormal];
//[self calculatebuttonaction];
}

#pragma mark -
#pragma mark Class methods

-(IBAction)DropdownButtonClick{
[dropDownView openAnimation];

}

最佳答案

如何简单地创建另一个 UITableView(或 UITableViewController)并将其与推送/弹出功能一起使用以显示下拉列表的项目而不展开任何内容?

关于iphone - 在按钮事件中显示下拉项的代码如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9529074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com