使用 CGRectZero 初始化 UIView 的框架
Initializing UIView's frame with CGRectZero
我找到了 Swift
中关于如何做某事的教程。我在 Objective-C
项目的尾端,我尝试将 classes 导入 Objective-C
,但是 that's been a bug-riddled, time monopolizing disaster,所以我从 Swift改为Objective-C。
我得到 UIView.h/m
到没有 warnings/errors 的地步,但是在 UIViewController
上添加视图是另一回事。我已经在下面发布了我正在尝试 "translate" 的初始化代码。我欢迎输入回复:我弄错了什么。
来自 Swift class 的用于初始化 UIView 的代码:
var parentFrame :CGRect = CGRectZero
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = Colors.clear
}
来自我的 "translated" Objective-C class 的代码,用于初始化 UIView
myUIView.h
// At MartinR's suggestion, I removed the pointer here
@property (nonatomic) CGRect parentFrame;
myUIView.m
// No compiler errors -- the errors occur on the UIViewController
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:(self.parentFrame)];
self.parentFrame = CGRectZero;
if (self) {
[super setFrame:self.parentFrame];
self.backgroundColor = [UIColor whiteColor];
}
return self;
}
当我尝试将 UIView 添加到 UIViewController 时出现问题。我不明白为什么我会收到以下警告:
Swift UIViewController 添加 UIView 的代码
func addHolderView() {
let boxSize: CGFloat = 75.0
holderView.frame = CGRect(x: view.bounds.width / 2 - boxSize / 2,
y: view.bounds.height / 2 - boxSize / 2,
width: boxSize,
height: boxSize)
holderView.parentFrame = view.frame
holderView.delegate = self
view.addSubview(holderView)
holderView.addOval()
}
我的"translated"Objective-CViewController充满了实施错误
myUIViewController.h
#import "HolderView.h"
// blah blah
@property (nonatomic, strong) HolderView *holderView;
myUIViewController.m
- (void)addHolderView {
CGFloat boxSize = 75.0;
// WARNING: The following line says "expression result unused"
[self.holderView initWithFrame:CGRectMake(_view.bounds.size.width / 2 - boxSize / 2,
_view.bounds.size.height / 2 - boxSize / 2,
boxSize,
boxSize)];
// Warning here went away by removing the pointer on CGRect parentFrame
self.holderView.parentFrame = view.frame;
self.holderView.delegate = self; // I have the delegate stuff squared away
[self.view addSubview:self.holderView];
}
感谢您的阅读。
已更新以在评论中反映 MartinR 的意见。
我更新了上面的代码以删除 CGRect parentFrame
上的指针。
addHolderView
的 Swift 版本正在使用已经存在的 holderView
并更新它。你的要么试图重新初始化存在的东西,要么初始化尚未分配的东西。很难知道是哪一个,但任何一个都不是个好主意。
要模仿原始代码,只需分配一个新的帧大小而无需初始化。要确定发生了什么,请使用调试器或 NSLog
语句检查 self.holderView
是否指向有效对象。
我找到了 Swift
中关于如何做某事的教程。我在 Objective-C
项目的尾端,我尝试将 classes 导入 Objective-C
,但是 that's been a bug-riddled, time monopolizing disaster,所以我从 Swift改为Objective-C。
我得到 UIView.h/m
到没有 warnings/errors 的地步,但是在 UIViewController
上添加视图是另一回事。我已经在下面发布了我正在尝试 "translate" 的初始化代码。我欢迎输入回复:我弄错了什么。
来自 Swift class 的用于初始化 UIView 的代码:
var parentFrame :CGRect = CGRectZero
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = Colors.clear
}
来自我的 "translated" Objective-C class 的代码,用于初始化 UIView
myUIView.h
// At MartinR's suggestion, I removed the pointer here
@property (nonatomic) CGRect parentFrame;
myUIView.m
// No compiler errors -- the errors occur on the UIViewController
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:(self.parentFrame)];
self.parentFrame = CGRectZero;
if (self) {
[super setFrame:self.parentFrame];
self.backgroundColor = [UIColor whiteColor];
}
return self;
}
当我尝试将 UIView 添加到 UIViewController 时出现问题。我不明白为什么我会收到以下警告:
Swift UIViewController 添加 UIView 的代码
func addHolderView() {
let boxSize: CGFloat = 75.0
holderView.frame = CGRect(x: view.bounds.width / 2 - boxSize / 2,
y: view.bounds.height / 2 - boxSize / 2,
width: boxSize,
height: boxSize)
holderView.parentFrame = view.frame
holderView.delegate = self
view.addSubview(holderView)
holderView.addOval()
}
我的"translated"Objective-CViewController充满了实施错误
myUIViewController.h
#import "HolderView.h"
// blah blah
@property (nonatomic, strong) HolderView *holderView;
myUIViewController.m
- (void)addHolderView {
CGFloat boxSize = 75.0;
// WARNING: The following line says "expression result unused"
[self.holderView initWithFrame:CGRectMake(_view.bounds.size.width / 2 - boxSize / 2,
_view.bounds.size.height / 2 - boxSize / 2,
boxSize,
boxSize)];
// Warning here went away by removing the pointer on CGRect parentFrame
self.holderView.parentFrame = view.frame;
self.holderView.delegate = self; // I have the delegate stuff squared away
[self.view addSubview:self.holderView];
}
感谢您的阅读。
已更新以在评论中反映 MartinR 的意见。
我更新了上面的代码以删除 CGRect parentFrame
上的指针。
addHolderView
的 Swift 版本正在使用已经存在的 holderView
并更新它。你的要么试图重新初始化存在的东西,要么初始化尚未分配的东西。很难知道是哪一个,但任何一个都不是个好主意。
要模仿原始代码,只需分配一个新的帧大小而无需初始化。要确定发生了什么,请使用调试器或 NSLog
语句检查 self.holderView
是否指向有效对象。