作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
代码如下:
-(IBAction)signUpBtnPressed:(id)sender
{
UIAlertView *alert = [
[UIAlertView alloc]
initWithTitle:@"k"
message:@"Thanks for Signing up!"
delegate:nil
cancelButtonTitle:@"Continue..."
otherButtonTitles:nil
];
[alert show];
[alert release];
}
在我的 View 中,我的“注册”按钮也附加到了此操作。
最佳答案
如果您使用 IB 创建 UI,我会检查所有连接是否都是在 IB 中建立的。具体来说,检查是否UIButton
在您的界面 XIB 中应该调用 signUpBtnPressed:(id)sender
其 Touch Up Inside 事件链接了此方法,并且 XIB 的“文件所有者”设置为此方法所在的 View Controller 。
关于objective-c - UIAlertView 未显示。我究竟做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2721966/
Feel free to skip straight to TL/DR if you're not interested in details of the question 简短的序言: 我最近决定
我一直在阅读 A Tour of Go学习Go-Lang到目前为止一切顺利。 我目前在 Struct Fields类(class),这是右侧的示例代码: package main import "fm
Last time I got confused顺便说一下PowerShell急切地展开集合,基思总结了它的启发式如下: Putting the results (an array) within a
我是一名优秀的程序员,十分优秀!