- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我目前正在使用 Xcode 6.1.1 和 Objective-C 开发 iOS 应用程序。在应用程序中有几个自定义 View 子类。其中一个是 UIButton 的子类,另一个是 UIView 的子类。
这些自定义 View 被标记为 IB_DESIGNABLE 并且有几个属性是 IBInspectable。
我还在 Xcode 项目中使用单元测试。每次我打开 Storyboard时,Xcodes 都会给我一些错误。
IB Designables
Failed to update auto layout status: dlopen(UnitTests.xctest, 1): Library not loaded: @rpath/XCTest.framework/XCTest
Referenced from UnitTests.xctest
Reason: image not found
IB Designables
Failed to render instance of CustomRadioButton: dlopen(UnitTests.xctest, 1): Library not loades: @rpath/XCTest.framework/XCTest
Referenced from UnitTests.xctest
Reason: image not found
当我删除 IB_DESIGNABLE 语句时,错误消失了。不幸的是,我需要它们是 IB_DESIGNABLE。我在 StackOverflow 上发现了一篇有同样问题但使用的是 Swift 的帖子。建议的解决方案不适用于 Objective-C,因此用于解决问题的功能在 Objective-C 中不存在(据我所知)。
这里是问题的链接:IBDesignable Errors When Adding to Tests Target
有人知道如何解决这个问题吗?
我也尝试使用 Xcode 6.2 beta,但问题仍然存在。
根据一条评论请求,这里是我的自定义 View 之一的代码:
自定义按钮.h #导入
@interface CustomButton : UIButton
@property (nonatomic, strong) UIFont *titleFont UI_APPEARANCE_SELECTOR;
@property (nonatomic, assign) IBInspectable BOOL useShapedForm;
@property (nonatomic, strong) IBInspectable UIColor *defaultColor;
@property (nonatomic, strong) IBInspectable UIColor *selectedColor;
@property (nonatomic, strong) IBInspectable UIColor *disabledColor;
@property (nonatomic, assign) IBInspectable CGFloat cornerRadius;
- (void)setDefaults;
- (IBAction)touchDown:(id)sender;
- (IBAction)handleButtonClick:(id)sender;
@end
自定义按钮.m
#import "CustomButton.h"
@implementation CustomButton
#pragma mark - Initialisation
- (instancetype)init
{
if (self = [super init]) {
[self setDefaults];
}
return self;
}
- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
[self setDefaults];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder
{
if (self = [super initWithCoder:aDecoder]) {
[self setDefaults];
}
return self;
}
- (void)setDefaults
{
self.useShapedForm = NO;
self.cornerRadius = self.useShapedForm ? 5 : 0;
self.defaultColor = self.useShapedForm ? [UIColor rsm_bg_btn_2] : [UIColor clearColor];
self.selectedColor = self.useShapedForm ? [UIColor rsm_bg_btn_1] : [UIColor clearColor];
self.disabledColor = self.useShapedForm ? [UIColor rsm_bg_btn_3] : [UIColor clearColor];
if (!self.useShapedForm) {
[self setTitleColor:[UIColor rsm_font_333_dark] forState:UIControlStateNormal];
[self setTitleColor:[UIColor rsm_bg_red] forState:UIControlStateSelected];
[self setTitleColor:[UIColor rsm_font_333_light] forState:UIControlStateDisabled];
} else{
[self setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
}
}
#pragma mark - Properties
- (void)setTitleFont:(UIFont *)titleFont
{
if (self.titleFont != titleFont) {
self.titleFont = titleFont;
[self.titleLabel setFont:self.titleFont];
}
}
- (void)setTitleEdgeInsets:(UIEdgeInsets)titleEdgeInsets
{
UIEdgeInsets insets = UIEdgeInsetsMake(titleEdgeInsets.top - 10,
titleEdgeInsets.left,
titleEdgeInsets.bottom,
titleEdgeInsets.right);
[super setTitleEdgeInsets:insets];
}
- (CGSize)intrinsicContentSize
{
CGSize defaultMetric = [super intrinsicContentSize];
// TODO: Metrics anpassen!!
return CGSizeMake(defaultMetric.width, 39);
}
#pragma mark - Private Methods
- (void)drawRect:(CGRect)rect
{
[super drawRect:rect];
if (self.useShapedForm) {
[self drawRSMShape];
}
}
#pragma mark - Public Methods
- (void)drawRSMShape
{
UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds
byRoundingCorners:UIRectCornerTopRight | UIRectCornerBottomRight | UIRectCornerBottomLeft
cornerRadii:CGSizeMake(self.cornerRadius, self.cornerRadius)];
[path closePath];
if (self.selected) {
[self.selectedColor setFill];
}
else if (self.enabled){
[self.defaultColor setFill];
}
else {
[self.disabledColor setFill];
}
[path fill];
}
- (IBAction)touchDown:(id)sender
{
RSMButton *button = (RSMButton *)sender;
button.highlighted = NO;
}
- (IBAction)handleButtonClick:(id)sender
{
}
@end
最佳答案
我也遇到了这个问题。这是由 IB Designable 文件在项目和测试项目中都具有目标成员资格引起的。一旦我将它从测试项目中删除,清理并重新启动 Xcode,错误就消失了
关于objective-c - 使用单元测试时 IB Designables 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27144647/
我正在用power designer创建一个物理模型,我想将默认值添加到我的Mysql表中。 有可能吗,有人加了默认值 ? 谢谢 最佳答案 有可能,我发现“列属性”并不容易 方法如下: 选择表格(单击
关闭。这个问题是 opinion-based 。它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文来回答。 2年前关闭。 Improve t
我正在编写一个采用 Material Design 布局的应用程序,但找不到任何关于如何将对话框动画显示到屏幕上的指南。 这表明盒子应该只是“砰”的一声存在,但这似乎违背了设计的精神,包括动画和触觉。
我做了一个巨大的掠夺,不小心丢失了我的*.cs(设计文件)..我刚刚得到了*.designer文件。 我能否反过来,仅使用 .designer 文件以某种方式创 build 计文件 (*.cs),还是
如果 Google 的关键字规划器向我显示关键字“Web Design [city-name]”获得约 880 次搜索,而“Website Design [city-name]”获得约 620 次搜索
首先,代码: $(document).ready(function() { $('#member_pattern').hide(); $('.add-member').click(function()
大型软件公司之一问了这个问题。我想出了一个简单的解决方案,我想知道其他人对该解决方案有何看法。 You are supposed to design an API and a backend for
在最新的 Material Design 文档 (https://www.google.com/design/spec/what-is-material/elevation-shadows.html#
背景 我正在对从我们的 RDBMS 数据库到 MongoDB 的转换进行原型(prototype)设计。在进行非规范化时,似乎我有两种选择,一种会导致许多(数百万)个小文档,另一种会导致更少(数十万)
Qt Designer (5.11.2) 在选择 QWebEngineView-Widget 时崩溃。 我正在创建一个对话框,以将其作为 .ui 文件包含在 QGIS 3 中。在表单中,我想使用 QW
我直接从 getmdl.io(组件页面)和所有设备(多台 PC、浏览器、手机等)复制代码,汉堡菜单不在标题中居中。我似乎无法隔离 css 中的菜单图标来重新对齐它。 getmdl.io 上的所有组件代
如何为 SPA 动态初始化 materialize design lite (google) 的组件?当我在 View 中动态初始化组件时,JS 没有初始化。正如我已经尝试过使用 componentH
我正在使用 Angular 4 构建一个 Web 应用程序。对于设计,我使用的是 Material Design lite。但是,我想使用 MDL 实现一个交互式轮播,它给我流畅的外观和感觉,并且与我
它看起来像 Polymer Starter Kit包含比 Material Design Lite 更多的组件,并且现在可用。由于两者都是符合 Material Design 理念的 Google 项
我在设置 mdl-textfield 样式时遇到了一些困难。 具体来说,设置 float 标签的大小和颜色,以及按下输入字段后动画的高度和颜色。 实际上,这是我从组件列表中获取的起点。 https:/
所以,好友列表的现代概念: 假设我们有一个名为 Person 的表。现在,那个 Person 需要有很多伙伴(其中每个伙伴也在 person 类中)。构建关系的最明显方法是通过连接表。即 buddyI
如何在导航中创建子菜单项? Link Link Link Link 我不能用 用它。什么是正确的类? 最佳答案 MDL 似乎还没有原生支持子菜单。 然而
我想知道我应该遵循哪些步骤来解决设计自动售货机等问题并提出许多设计文档(如用例、序列图、类图)。是否有任何我可以阅读的来源/链接,其中讨论了如何逐步进行。 谢谢。 最佳答案 我不确定是否有任何普遍接受
早在 10 月份,Kristopher Johnson 就询问了 Accounting Software Design Patterns 他收到了几个答案,但基本上都是一样的,都指向Martin Fo
我一直在为我们的产品开发一些组件,其中之一是基于流布局面板。 我想做的是为它提供一个自定义设计器,但不会丢失其默认设计器 (System.Windows.Forms.Design.FlowLayout
我是一名优秀的程序员,十分优秀!