如果这个问题非常基本,我道歉。我一直在谷歌搜索,但似乎无法找到下拉警报横幅/标签的api /参考(我不知道这个的正确术语),因此我在这里张贴。 / p>
这个:标签/横幅中有“请输入有效的电子邮件地址”。
所以这是我的问题:
答案 0 :(得分:4)
看看here,我相信你能找到满足你需求的东西。
基本的想法是它只是一个UIView,你可以从屏幕顶部动画下来(在最基本的时候)。你可以通过添加渐变,触摸识别器来解除它等等来获得更多的爱好者。但是,为了获得基线功能,您只需执行以下操作:
//Create a view to hold the label and add images or whatever, place it off screen at -100
UIView *alertview = [[UIView alloc] initWithFrame:CGRectMake(0, -100, CGRectGetWidth(self.view.bounds), 100)];
//Create a label to display the message and add it to the alertView
UILabel *theMessage = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(alertview.bounds), CGRectGetHeight(alertview.bounds))];
theMessage.text = @"I'm an alert";
[alertview addSubview:theMessage];
//Add the alertView to your view
[self.view addSubview:alertview];
//Create the ending frame or where you want it to end up on screen, in this case 0 y origin
CGRect newFrm = alertview.frame;
newFrm.origin.y = 0;
//Animate it in
[UIView animateWithDuration:2.0f animations:^{
alertview.frame = newFrm;
}];
答案 1 :(得分:3)
查看我的项目 - 这可能就是你要找的东西。
答案 2 :(得分:0)
为了更轻松地控制动画制作动画,您可以将自定义视图嵌入到UIStackView中,只需在动画块中显示/隐藏它即可。这样可以显着减少动画警报可见性所需的代码量。