English 中文(简体)
开始算术之后的定论似乎没有出现
原标题:Modal view after start app does not appear

在用户能够使用我的手法之前,必须登录。 我的想法是,在评估开始之后,似乎有条不紊的观点。

在5号SOS案之前,我有过所有文件。 现在,我想将这些意见转化为一个故事板,以便了解情况,更好地利用新的功能。

该信与一个分管器合作。 问题在于,日志是装满的,但从未出现过。

我在指定代表中进行了审判,我为分裂观点控制员做了一个班子,并试图将其装在Gid Load。

法典:

- (void)viewDidLoad
{
    [super viewDidLoad];

    //load and push login
    UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
    LoginViewController *loginViewController = [storyboard instantiateViewControllerWithIdentifier:@"loginViewController"];

    NSLog(@"login push: %@", loginViewController);
    [self presentModalViewController:loginViewController animated:YES];
    NSLog(@"done push");
}

记录:

2012-01-13 10:18:08.217 App[1101:707] login push: <LoginViewController: 0x472fe0>
2012-01-13 10:18:08.330 App[1101:707] done push

我试图将其装在根基或细节上,但不是正确的地点,Xcode则发出以下信息:

2012-01-13 10:18:08.807 App[1101:707] Unbalanced calls to begin/end appearance transitions for <MainSplitViewController: 0x464bc0>.

My 第一个想法是先从原木观点开始,然后由原木制控制器推进。 但我发现,分裂观点控制器必须成为根本观点。

最佳回答

鉴于DidLoad,把另一名主计长推上去很早。 也许现在的主计长会收到一im,你试图以一im一气提出另一种意见。

您应努力把你的后勤工作转向观察。

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...