-2

我想直接在应用程序didFinishLaunchingWithOptions 调用下面的方法。

目前这个动作是通过一个按钮触发的。我怎么能在没有按钮的情况下调用它?

- (IBAction)toggleVertical:(id)sender
{
    [splitController toggleSplitOrientation:self];
    [self configureView];
}
4

1 回答 1

2

只需调用它

[self toggleVertical:nil];  

如果该方法使用 sender 参数,则必须放入 UIButton 的引用中:

[self toggleVertical:self.myButton];  
于 2011-11-24T12:34:33.277 回答