English 中文(简体)
如何转换 十三. 意见
原标题:How to switch between Views on iOS

i 相对而言,对OS世界来说,我是新鲜事物,因为我是来自以活动为本的安乐斯世界的,与SOS如何管理意见之间的过渡混为一谈。

我已经设立了一个国际调查组,在完全屏幕上显示一种Login形式(为iPad提供一台信号器)。 在成功登录之后,我想转向另一种观点,并使用国际律师联合会的一位书记员。 为了能够把我的首任控制员推向第二位(也是国际会计师联合会),我已经增加了一名美国航空测量员,我的首任控制员是根基。

我在第二次国际调查组长的行文中添加了国际调查组的意见。 Xcode此前曾抱怨说,我的第二名国际会计师联合会的书记官没有定出意见单,因此,我基本上盲目地在我国际律师联合会的书记员中详细阐述了意见。

其结果是,第一名首席审计员的确被推走了,但我却不敢让国际笔记官露面,但我在意见中已经提出了详细的意见。

我是否误解了什么? 第一次显示完整的屏幕(绝缘、无钻探)是有必要的,然后推向国际笔记员。 我以前曾试图把新的故事牌变成了,但事实证明,这更令人困惑(涉及太多的魔).)。 或许,我只是谈谈“倡议”的一些错误。

最佳回答

也许,你希望从作为主意控制人的UINavigationController开始。 UINavig 主计长的惯用方法将控制器视为一个参数(同时称作根基观察仪),而控制器可以是你目前作为根基控制器应用的观察控制器。 然后将在导航控制器内展示。

一旦你把你的观察控制器放在导航控制器内,你可以要求[自封的Controller :x] 显示新的观察控制器,[自封的Controller popViewController] 再次回来。 如果你不希望船上航行,你就可以把航条藏起来。

或者,你也可以在另一个观点控制器内展示全方位的视力控制器,请[本人在场的ModalViewController:x]显示。

问题回答

总的来说,你想在您的轴心中把《国际会计原则》的观点放到最高层。 在你创建轴心时,它可能给你一个空白观点,作为起点,然后,你又给你方言。 这(原称)是你希望的 view。

特定法律。 我正转向次点击纽顿的观点。

(你想像我们在安伯展示的新活动)

首先进口

#import "NextController.h"

之后

- (IBAction)clicking:(id)sender {

    NextController *nextviewcontroller = [[NextController alloc]initWithNibName:@"NextController" bundle:nil];// include it before calling it..

    [self presentViewController:nextviewcontroller animated:YES completion:nil];

}

initWith NibName:@NameOfNibFileToShow和presentViewController在功能和animated:YES上建立,以显示 an升





相关问题
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, ...

热门标签