gpt4 book ai didi

objective-c - iOS:带有多行 UITextView 的 UIAlertView

转载 作者:行者123 更新时间:2023-12-01 19:15:31 25 4
gpt4 key购买 nike

我正在寻找一种添加多行的方法 UITextViewUIAlertView .我用谷歌搜索了很多,但我找不到有效的解决方案。

我正在使用 iOS 5。

还是只有 UIAlertView 的子类才有可能? ?

编辑:我需要一个多行输入。

最佳答案

编辑 UIAlertViews被苹果标记为不良做法。所以最好创建自己的自定义UIViewController这看起来像一个警报 View 。

使它不是你的函数调用警报,而是加载你的新 View Controller

这是您的UIViewController 动画的一个很好的例子。让它像一个典型的 IOS AlertView

  -(void)initialDelayEnded {
self.view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001);
self.view.alpha = 1.0;
[UIView animateWithDuration:kTransitionDuration/1.5 animations:^{
self.view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
}completion:^(BOOL complete){
[UIView animateWithDuration:kTransitionDuration/2 animations:^{
self.view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.9, 0.9);
}completion:^(BOOL complete){
[UIView animateWithDuration:kTransitionDuration/2 animations:^{
self.view.transform = CGAffineTransformIdentity;
}];
}];
}];

}

关于objective-c - iOS:带有多行 UITextView 的 UIAlertView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13684726/

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