- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我是 iOS 编程的新手,遇到了一个问题。
做了什么:
我已经创建了 iOS 应用程序。最初它有 main.m、AppDelegate.h、AppDelegate.m 和一些其他通常创建的支持文件(不带代码)。
然后我手动创建了带有接口(interface)(LoginView.xib)的XIB文件,并手动添加了LoginViewController.h和LoginViewController.m来控制XIB。
向 LoginViewController.h 添加了 socket 。
毕竟我设置了文件的所有者类 (LoginViewController) 并在 XIB 和 LoginViewController.h 之间建立了连接。
问题描述:
我需要显示实例化登录 View Controller 并在应用程序启动时立即显示登录 View 。
我尝试了几次并阅读了十几个论坛主题,但没有办法。除了白色窗口背景外,没有显示任何内容。我该如何纠正?
引用代码:
LoginViewController.h
#import <UIKit/UIKit.h>
@interface LoginViewController : UIViewController
{
IBOutlet UIView *_loginView;
IBOutlet UITextField *_tfLogin;
IBOutlet UITextField *_tfPassword;
IBOutlet UIButton *_btnLoginToSystem;
}
- (IBAction)attemptLogin:(id)sender;
@end
登录 View Controller .m
#import "LoginViewController.h"
@interface LoginViewController ()
@end
@implementation LoginViewController
- (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.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)attemptLogin:(id)sender
{
}
@end
AppDelegate.h
#import <UIKit/UIKit.h>
#import "LoginViewController.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) LoginViewController *loginViewController;
@end
AppDelegate.m
#import "AppDelegate.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
self.loginViewController = [[LoginViewController alloc] initWithNibName:@"LoginView" bundle:nil];
[self.window.rootViewController presentModalViewController:self.loginViewController animated:NO];
[self.window makeKeyAndVisible];
return YES;
}
更新!!!伙计们,多亏了你们,我发现了另一个问题。在您确认我的代码(当然是在适当的版本之后)是正确的之后,我启动了模拟器并看到我的应用程序崩溃并出现以下异常:
NSInternalInconsistencyException with the reason [UIViewController _loadViewFromNibNamed:bundle:] loaded the ... nib but the view outlet was not set.
感谢 StackOverflow,我修复了它。 Loaded nib but the view outlet was not set - new to InterfaceBuilder
Josh Justice 对我提供的主题的评论的引述链接:
- Open the XIB file causing problems
- Click on file's owner icon on the left bar (top one, looks like a yellow outlined box)
- If you don't see the right-hand sidebar, click on the third icon above "view" in your toolbar. This will show the right-hand sidebar
- In the right-hand sidebar, click on the third tab--the one that looks a bit like a newspaper
- Under "Custom Class" at the top, make sure Class is the name of the ViewController that should correspond to this view. If not, enter it
- In the right-hand sidebar, click on the last tab--the one that looks like a circle with an arrow in it
- You should see "outlets" with "view" under it. Drag the circle next to it over to the "view" icon on the left bar (bottom one, looks like a white square with a thick gray outline
- Save the xib and re-run
大概这些信息聚合成一个点,会帮助其他新人更快通过我走过的路。
最佳答案
在 application:didFinishLaunchingWithOptions: 方法中将 LoginViewController 设置为 Root View Controller 。
self.window.rootViewController = self.loginViewController;
删除这一行:
[self.window.rootViewController presentModalViewController:self.loginViewController animated:NO];
关于ios - 连接在一起 : AppDelegate, ViewController 和 XIB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15396947/
我正在决定使用 MonoTouch 进行开发时哪些地方需要使用 .xib 文件。 我当前的项目需要与 iPhone 和 iPad 配合使用,所以我想知道使用 Interface Builder 是
我出于某个目的创建了 4 个宽度为 200、高度为 200 的 xib……但是如果我想在一个 xib 中加载所有 xib,我不知道如何实现……我有几个想法 1.能否让所有的xib都按组数组加载? 2.
我正在处理 Ipad 的应用程序。在这个应用程序中,我的第一类 Xib 上有一个 UIButton,现在我想在单击按钮时在第一类 XIB 中添加第二类 XIB。我知道如何调用第二类 XIB ..就是这
我的第二个 View Controller 中有标签。我想将按钮索引从 firstviewcontroller 传递到 secondviewcontroller 标签。当我按下按钮时,它转到第二个 V
描述:- 我正在为自定义框架编码,为此我到处都使用 XIB,现在我想在我现有的 XIB 中调用另一个 XIB,它的调用非常好但无法执行调用 XIB 的按钮操作。提前致谢 这是代码。 let bundl
我正在寻找一种方法来重用一个 .xib 文件中的内容并将其加载到多个其他 .xib 文件中。原因是我可以在我的应用程序的所有页面上重复使用我的部分设计。我知道在 android 编程中,您可以通过在设
我知道 View XIB 已经有一个 View ,但是还有其他差异吗?我读过的教程说创建一个 View XIB,更改类并删除 View ,然后插入一个 TableView 并重新建立连接(文件所有者到
首先,这是我的 View 层次结构: - Table view -- Table view cell (loaded from custom xib) --- Collection view ----
我想重新使用一些 .xib 文件作为我的 iOS 应用主要 View 的模板。有人能告诉我是否有可能在 iOS 中实现一个“类似模板”的系统,例如:Header、Logo、Footer,并将它们作为单
我如何设置一个 ViewController 来根据某些情况显示一个 View 或另一个 View ? 我有 ViewControllerA.xib 和 ViewControllerB.xib。两者都
有一些类似的帖子,但我已经搜索了很多答案,但不幸的是我没有找到。 我想要什么:我正在使用 xib 文件创建 View 。假设它的类是 BaseView。在这个 baseView 中,我有一个自定义 s
我有一个带有 xib 文件/类问题的奇怪的自动布局。我在使用 xib 文件的 Swift 中创建了一个自定义通知 View (UIView 子类)。 当设备以纵向加载时,通知很好。 当我旋转到横向时,
如果我在 ChildView.xib 中创建自定义 UIView - 我如何从 MainWindow.xib 中引用它? 我试图将一个 UIView 拖到 MainWindow.xib 并将其与同一个
我正在使用 IB 设计一个特定的按钮(带有一些标签、imageView 和其他东西)。 然后我想在另一个 xib 中使用那个 xib 对象(按钮),我有 6 个该按钮的对象。 我知道我可以使用类标识符
我在网上搜索了一段时间,但没有找到答案...... 升级到通用应用程序时,Xcode4 是否可以将 iPhone.xib 转换为 iPad.xib?!?在 Xcode 3 中,可以从选定的 iphon
我看过很多关于将 iPhone xib 转换为 iPad xib 的帖子和教程,但我想反其道而行之。 我能找到的唯一资源是: Convert iPad application to iPhone? 并
有什么方法可以使用相同的 xib 为 iPhone4 和 iPhone5 设计我的类吗? 最佳答案 是的,您可以使用相同的 XIB 通过使用自动布局为 iPhone 4 和 iPhone 5 进行设计
是否有键盘快捷键可以从当前的 xib 文件跳转到它的类(ViewController)?然后再次从它的类返回到它的 xib 文件? 我一直使用 ctrl-command-up/down 在标题和源代码
我对 this 有疑问项目,它没有 xib 文件或 Storyboard。该项目使用以下代码立即将 appdelegate 文件调用到主文件中: int retVal = UIApplicationM
我有一个正在运行的应用程序,其中包含一个导航 Controller 、两个 View Controller 、两个 View 、一个模型对象,并且没有 xib 文件。 View 是以编程方式创建的。现
我是一名优秀的程序员,十分优秀!