如何使 UIView 充当操作表?
Posted
技术标签:
【中文标题】如何使 UIView 充当操作表?【英文标题】:How do I make a UIView act as an actionsheet? 【发布时间】:2014-03-26 06:54:59 【问题描述】:我需要一个视图来弹出并让用户登录。我显然不能为此使用操作表,因为它们只有按钮。
所以我希望 UIView 向上滑动。
我创建了 UIView,称为 CustomModalView。
看来我需要这样的代码:
- (IBAction)showTapped:(id)sender
[UIView animateWithDuration:.5 animations:^
subView.frame=CGRectMake(0, 225, subView.frame.size.width, subView.frame.size.height);
];
- (IBAction)hideTapped:(id)sender
[UIView animateWithDuration:.5 animations:^
subView.frame=CGRectMake(0, 480, subView.frame.size.width, subView.frame.size.height);
];
但我是目标 c 的新手,我不明白如何将其自定义到我自己的项目中......我什至不知道将这段代码放在哪里。任何帮助将不胜感激。
【问题讨论】:
您可以根据自己的需要自定义UIView,然后根据需要在上面放置UIButton。presetnModelVieController
怎么样而不是查看。
【参考方案1】:
您可以使用操作表来执行此操作。 首先在界面声明一个uiactionsheet的属性。在下面的示例中,我声明了一个名为 countryActionSheet 的属性。
然后在 IBaction 中跟随代码;
-(IBAction)popupView// declare another actionSheet //
UIActionSheet *actionSheet =[[UIActionSheet alloc]initWithTitle:@"Select Country" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles: nil];
countryActionsheet=actionSheet;//equate both the actionSheets//
actionSheet.actionSheetStyle= UIActionSheetStyleBlackTranslucent;
countryPicker.dataSource=self;
countryPicker.delegate=self;
// Add your view with frame with respect to actionSheet//
UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 400)];
imageView.image=[UIImage imageNamed:@"black background.png"];
UIButton *cancelBtn=[[UIButton alloc]initWithFrame:CGRectMake(200,20, 80, 30)];
[cancelBtn setTitle:@"Cancel" forState:UIControlStateNormal];
[cancelBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[cancelBtn addTarget:self action:@selector(cancelBtnPressed) forControlEvents:UIControlEventTouchUpInside];// create a method named cancelBtnPressed
[cancelBtn setBackgroundImage:[UIImage imageNamed:@"Untitled 4.png"] forState:UIControlStateNormal];
UIButton *okBtn =[[UIButton alloc]initWithFrame:CGRectMake(40, 20, 80, 30)];
[okBtn setTitle:@"Done" forState:UIControlStateNormal];
[okBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[okBtn addTarget:self action:@selector(okBtnPressed) forControlEvents:UIControlEventTouchUpInside];// create method named okBtnPressed
[okBtn setBackgroundImage:[UIImage imageNamed:@"Untitled 4.png"] forState:UIControlStateNormal];
[countryActionsheet addSubview:imageView];
[countryActionsheet addSubview:cancelBtn];
[countryActionsheet addSubview:okBtn];
[countryActionsheet showInView:self.view];
[countryActionsheet setBounds:CGRectMake(0, 0, 320, 400)];// frame of actionSheet
-(void)cancelbtnPressed
// write action
-(void)okBtnPressed
// write action
希望对你有所帮助;
【讨论】:
以上代码中的 countryPicker 是什么?...@Abin George【参考方案2】:简单的方法是使用添加视图到UIActionSheet
[actionSheeet addSubview: subView];
【讨论】:
我读到您只能将按钮放在操作表上 - 这不是真的吗? 不,这不是真的。 UIButton 是 UIView 的继承。所以如果你把按钮也放在 UIView 上。【参考方案3】:我假设您已经有一个 UIViewController ,它像子视图一样添加了 CustomModalView。我像这样重写上面的两个方法:
- (void)showLoginView
[UIView animateWithDuration:.5 animations:^
customModalView.frame=CGRectMake(0, 225, customModalView.frame.frame.size.width, customModalView.frame.frame.size.height);
];
- (void)hideLoginView
[UIView animateWithDuration:.5 animations:^
customModalView.frame.frame=CGRectMake(0, 480, customModalView.frame.frame.size.width, customModalView.frame.frame.size.height);
];
在UIViewController.m中,调用[self showLoginView]显示,否则
【讨论】:
【参考方案4】:如果您只需要一个简单的登录提示,其中包含用户名和密码文本输入,以及登录和取消按钮,您可以使用UIAlertView
。只需将其UIAlertViewStyle
属性设置为UIAlertViewStyleLoginAndPasswordInput
。
如果您以前没有使用过这些,请阅读 Apple 的 UIAlertView
和 UIAlertViewDelegate
文档。
【讨论】:
以上是关于如何使 UIView 充当操作表?的主要内容,如果未能解决你的问题,请参考以下文章
如何让自定义 UIControl 作为推送操作参与 segue?
我有一个显示 UIActionSheet 的 UITableViewController,如何使操作表选项显示模式视图?
如何使用 Objective-C 以编程方式使我的 UIView 可水平滚动?