如何使用 Storyboard 以编程方式添加动作
Posted
技术标签:
【中文标题】如何使用 Storyboard 以编程方式添加动作【英文标题】:How to add an action programmatically using Storyboard 【发布时间】:2013-12-20 13:46:21 【问题描述】:我在 iTunes 上有应用程序,它们使用 ViewController 作为可扩展/可缩放 ScrollView,并以编程方式添加按钮和对该按钮的操作。我目前正在更新应用程序,并已从使用 XIB 构建应用程序切换到使用情节提要。 1.0 版和这个 2.0 版都使用相同的 xCode 4.6 平台构建。我发现一些代码在多个区域中的工作方式不同,并且找到了大多数的解决方法,但不适用于此按钮的操作。我正在尝试以编程方式将操作添加到已编程的 ViewController 上的按钮。在 V1.0 中工作的代码不适用于 Storyboard。我不记得在 V1.0 中使用过 ARC,所以我不知道这是否是原因。对于此事,我将不胜感激。
显然我不是专业的程序员,所以尽可能清楚会有所帮助。谢谢。
目标:我只是试图让 ScrollingViewController 弹出回到 MainViewController 或使用添加到名为 BackButton.png 的视图的按钮返回到以前的 VC
这是我的代码:
@interface ZoomingScrollView : UIViewController
IBOutlet UIScrollView *scroller;
IBOutlet UIScrollView *imgView;
IBOutlet UIButton *myButton;
@property (nonatomic, retain) UIScrollView *scroller;
@property (nonatomic, retain) UIScrollView *imgView;
@property (nonatomic, retain) UIButton *myButton;
@end
@implementation
-(void) loadView
//Image View Scrollable
UIImageView *imgView =[[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"ZoomingImage.png"]]autorelease];
imgView.tag = 100;
UIScrollView *scroller = [[[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)]autorelease];
scroller.delegate = self;
scroller.minimumZoomScale = 0.25;
scroller.maximumZoomScale = 3.0;
scroller.bounces=NO;
scroller.showsHorizontalScrollIndicator=YES;
scroller.showsVerticalScrollIndicator=YES;
scroller.contentSize = imgView.frame.size;
scroller.contentOffset =CGPointMake((imgView.frame.size.width-1024)/2, (imgView.frame.size.height-768)/2);
[scroller addSubview:imgView];
self.view = scroller;
//Button Controls
UIButton *myButton=[UIButton buttonWithType:UIButtonTypeCustom];
myButton.frame = CGRectMake(0, 20, 60, 40);
[myButton setTitle:@"goBack" forState:UIControlStateNormal];
[myButton setBackgroundImage:[UIImage imageNamed:@"BackButton.png"] forState:UIControlStateNormal];
[myButton addTarget:self action:@selector(goBack:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:myButton];
-(UIView*) viewForZoomingInScrollView: (UIScrollView *) scrollView
return [self.view viewWithTag:100];
再次感谢。
【问题讨论】:
你能详细解释一下到底是什么不工作吗? 是的,当我在模拟器中运行应用程序时,VC 按预期出现,按预期滚动和缩放,并且按钮按预期显示在左上角。当我点击编程的“BackButton”时,应用程序崩溃,我在 DebugConsole 中得到了这个。 ZoomingScrollView goBack:]:无法识别的选择器发送到实例 0x9a33e50 2013-12-20 15:53:35.626 ScrollableViewApp[1467:14003] *** 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因: ' - [ZoomingScrollView GoBack的:]:无法识别的选择发送到实例0x9a33e50' ***第一掷调用堆栈:(0x1bfd012 0x15aae7e 0x1c884bd 0x1becbbc 0x1bec94e 0x15be705 0x4f22c0 0x4f2258 0x5b3021 0x5b357f 0x5b26e8 0x7b61d3 0x1bc5afe 0x1bc5a3d 0x1ba37c2 0x1ba2f44 0x1ba2e1b 0x2a677e3 0x2a67668 0x4eeffc 0x25c2 0x24f5为0x1)的libc + +abi.dylib: 终止调用抛出异常 (lldb) 【参考方案1】:你能添加 goback: 方法的代码吗,就像
- (void)goBack:(id)sender
[self.navigationalController popViewControllerAnimated:YES];
【讨论】:
您好 Gautham,感谢您的回复。不幸的是,这没有用。我的最终目标是在 VC 中拥有一个缩放滚动视图,它会弹回原始 VC,无论我做什么,我的旧代码都无法正常工作。我决定在 Storyboard 中设置 Scrollview 和按钮,并使用稍微不同的代码。对于希望在视图控制器中具有缩放滚动视图的任何人,此代码应该可以完美运行。呃……由于某种原因,它不允许我发布代码。 Hmmm.. :(你能告诉我添加goBack方法后显示的错误是什么吗?以上是关于如何使用 Storyboard 以编程方式添加动作的主要内容,如果未能解决你的问题,请参考以下文章
如何以编程方式将 UIImageView 添加到 UIStackView(故事板)
基于在 Storyboard 中使用自动布局创建的另一个视图,以编程方式使用框架创建视图
如何以编程方式从 UINavigationController (storyboard) 切换到 UIViewController
如何在 Storyboard 上创建 Segue,从以编程方式注册的 UICollectionViewCell 到新的 UIViewController?