0

你好我只是想从一个矩形按钮做一个简单的uipopover。在以前的 Xcode (4.2) 中,我可以毫无问题地运行它,但是当我尝试在 Xcode 4.3.2 iPad 模拟器上运行此代码时,当我按下 rect 按钮时它会冻结/挂起。谁能帮我?这是我的代码

在头文件中:

@interface popViewViewController : UIViewController <UIPopoverControllerDelegate> {


}

-(IBAction)showPop:(id)sender;


@end

实施文件:

#import "popViewViewController.h"
#import "infoView.h"

@interface popViewViewController ()


@end

@implementation popViewViewController

-(IBAction)showPop:(id)sender {

    infoView *infoview = [[infoView alloc] init];
    UIPopoverController *pop = [[UIPopoverController alloc] initWithContentViewController:infoview];
    [pop setDelegate:self];
    [pop presentPopoverFromRect:[sender bounds] inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUnknown animated:YES];
    [pop setPopoverContentSize:CGSizeMake(300, 200)];


}

这是错误显示的地方:

#import "popViewAppDelegate.h"

int main(int argc, char *argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([popViewAppDelegate class]));
    }
}

“线程 1:信号 SIGABRT”

谢谢。

4

2 回答 2

0

如果这里的帮助是 infoView 控制器:

信息视图.h:

#import <UIKit/UIKit.h>

@interface infoView : UIViewController

@end

信息视图.m:

#import "infoView.h"

@interface infoView ()

@end

@implementation infoView

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

@end
于 2012-05-03T17:06:43.533 回答
0

显然,问题不在我预期的 InfoView 中。一个问题,你在使用ARC吗?如果是这样,请尝试将 popovercontroller 保持为强属性。对此的可能解释是,在 ARC 中,弹出框将在离开方法时自动释放。如果您不使用 ARC,我没有任何其他线索,抱歉。

于 2012-05-03T18:20:38.927 回答