iphone - iOS 从 View Controller 访问 View 的变量
<p><p>我正在 iOS 上进行开发,并且正在以编程方式构建我的 View 。我注意到,当我尝试从 ViewController 访问必须在 View 中更改的变量时,它们为空。我将发布 View 及其 ViewController :</p>
<p><strong>RootViewController.h</strong></p>
<pre><code> #import <UIKit/UIKit.h>
@class RootView;
@interface RootViewController : UIViewController {
RootView *rootView;
}
@property (nonatomic,retain) RootView *rootView;
@end
</code></pre>
<p><strong>RootViewController.m</strong></p>
<pre><code> #import "RootViewController.h"
#import "RootView.h"
@implementation RootViewController
@synthesize rootView;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = ;
if (self) {
// Custom initialization
}
return self;
}
- (void)dealloc
{
;
;
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
;
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)loadView{
RootView *rootV = [ initWithFrame:CGRectMake(10, 10, 100, 50)];
rootV.rootViewController = self;
self.view = rootV;
;
}
- (void)viewDidLoad{
NSLog(@"TEXT: %@",self.rootView.label.text);
self.rootView.label.text=@"HELLO!";
}
- (void)viewDidUnload
{
;
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
</code></pre>
<p>@结束</p>
<p><strong>RootView.h</strong></p>
<pre><code> #import <UIKit/UIKit.h>
@class RootViewController;
@interface RootView : UIView {
RootViewController *rootViewController;
UILabel *label;
}
@property (nonatomic,assign) RootViewController *rootViewController;
@property (nonatomic,retain) UILabel *label;
@end
</code></pre>
<p><strong>RootView.m</strong></p>
<pre><code> #import "RootView.h"
#import "RootViewController.h"
@implementation RootView
@synthesize rootViewController;
@synthesize label;
- (id)initWithFrame:(CGRect)frame
{
self = ;
if (self) {
//Create the label
UILabel *testLabel = [ initWithFrame:CGRectMake(100, 100,100, 50)];
//Set the font bold
testLabel.font = ;
//Set the backgroundcolor of the label to transparent
testLabel.backgroundColor = ;
//Set the text alignment of the text label to left
testLabel.textAlignment = UITextAlignmentLeft;
//Set the text color of the text label to black
testLabel.textColor = ;
testLabel.text = @"01:30";
self.label = testLabel;
;
;
}
return self;
}
- (void)dealloc
{
;
rootViewController = nil;
;
}
@end
</code></pre>
<p>我更改了代码,但似乎无法正常工作.....</p>
<p>好的解决了,我忘了这行“self.rootView = rootV;”</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>直到 -initRootView 方法返回后,您的 View 才知道它的 Controller 是什么,但您正试图从该方法中使用 Controller 。</p>
<p>也就是说,如果您按照通常的 Cocoa Touch 模式来创建 ViewController ,那会更好。 ViewController 应该懒惰地创建它们的 View ,也就是说它们推迟 View 的创建和初始化,直到调用 -loadView 方法。您可以覆盖 -loadView 来创建您的 View ,也可以覆盖 -viewDidLoad 来执行任何需要在创建 View 后完成的设置工作。</p>
<p>此外,通常不建议 View 了解其 Controller 。 Controller 应该告诉 View 该做什么,而不是相反。如果您需要 View 向 Controller 发送一些信息,您通常将 Controller 作为 View 的委托(delegate)提供给 View 。但是如果你只需要 ViewController 能够找到一些 subview ,比如你的标签,那么在容器 View 中提供一些访问器可能是个好主意(这样 ViewController 就可以说类似 <code> self.view.label.text = @"some text";</code>。另一种选择是将 subview 的标签属性设置为某个唯一值,并让 Controller 使用它来查找 subview 。</p></p>
<p style="font-size: 20px;">关于iphone - iOS 从 ViewController 访问 View 的变量,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/6456961/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/6456961/
</a>
</p>
页:
[1]