- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 Objective-C 项目中,我曾经使用 PageMenu用于用户友好导航的库,但我注意到无限的 menuScrollView 和居中选定的菜单项看起来比默认的 PageMenu 漂亮得多。
当我发现PagingMenuController时我尝试将这个 swift 库导入到 obj-c 项目中。一切似乎都很好,头文件已正确创建,已授予对 PagingMeniController 类方法的访问权限。
但是当我尝试使用带有代码的 View Controller 数组来初始化 PagingMenuController 类时:
#import "moyoutlet-Swift.h"
UIViewController* vc = [[UIViewController alloc] init];
vc.view.backgroundColor = [UIColor redColor];
vc.menuItemDescription = @"vc";
UIViewController* vc1 = [[UIViewController alloc] init];
vc1.view.backgroundColor = [UIColor whiteColor];
vc1.menuItemDescription = @"vc1";
NSArray* arr = [NSArray arrayWithObjects:vc,vc1, nil];
PagingMenuController* pvc = [[PagingMenuController alloc] initWithViewControllers:arr];
[self.view addSubview:pvc.view];
xcode 在 MenuItemView.swift 方法中显示错误
calculateLabelSize(label: UILabel, windowSize: CGSize = UIApplication.sharedApplication().keyWindow!.bounds.size)
fatal error: unexpectedly found nil while unwrapping an Optional value
似乎 UIApplication.sharedApplication().keyWindow!.bounds.size 返回 nil。
你觉得这个错误的原因在哪里?
最佳答案
如Acecilia说这个问题在this discussion中有描述。解决方案是将 -(void)viewDidAppear 中的所有内容设置为:
-(void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
FirstViewController* fvc = [sb instantiateViewControllerWithIdentifier:@"FirstViewController"];
fvc.title = @"First View Controller";
fvc.view.backgroundColor = [UIColor grayColor];
SecondViewController* svc = [sb instantiateViewControllerWithIdentifier:@"SecondViewController"];
svc.title = @"Second View Controller";
svc.view.backgroundColor = [UIColor lightGrayColor];
PagingMenuController* pvc = [[PagingMenuController alloc] initWithViewControllers:@[fvc,svc]];
[self addChildViewController:pvc];
[self.view addSubview:pvc.view];
}
我创建了example project展示它是如何工作的。
关于ios - obj-c 项目中的 PagingMenuController swift 库错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37652625/
我正在尝试创建基于 ButtonBar 的分页菜单,但它将是动态的,因为创建的数据(菜单编号的标题)将来自服务器。不幸的是,没有为这种情况创建这样的例子。我知道要求这样的例子真的很愚蠢,因为我对这种情
我正在创建一个聊天应用程序,其中有一些具有不同类别的预定义常见问题解答,当用户单击按钮时它们会向上滑动。以下是图片的外观: [![最终输出] 我正在使用来自以下链接的 PagingMenucontro
在我的 Objective-C 项目中,我曾经使用 PageMenu用于用户友好导航的库,但我注意到无限的 menuScrollView 和居中选定的菜单项看起来比默认的 PageMenu 漂亮得多。
我是一名优秀的程序员,十分优秀!