【发布时间】:2013-04-02 17:54:54
【问题描述】:
我正在做电梯的事情。我在使用 presentModalViewController 发送具有不同视图的数据时遇到问题。我收到红色消息“favoriteColorString”属性未找到。我复制了完全相同但不同的表单名称和按钮。 “favoriteColorString”出现错误,无法发送电梯2数据。
我尝试了两种不同的方法。
Elevator2View.favoriteColorString = [[NSString alloc] initWithFormat:@"Your favorite color is %@", favoriteColorTextField.text];
和
favoriteColorString = [[NSString alloc] initWithFormat:@"Your favorite color is %@", favoriteColorTextField.text];
这是我的代码:
ElevatorView.h
#import <UIKit/UIKit.h>
#import "Elevator2View.h"
@interface ElevatorView : UIViewController<PassSecondColor>
{
Elevator2View *Elevator2View;
IBOutlet UITextField *favoriteColorTextField;
IBOutlet UILabel *favoriteColorLabel;
IBOutlet UILabel *secondFavoriteColorLabel;
NSString *secondFavoriteColorString;
}
@property (nonatomic, retain) Elevator2View *Elevator2View;
@property (nonatomic, retain) IBOutlet UITextField *favoriteColorTextField;
@property (nonatomic, retain) IBOutlet UILabel *favoriteColorLabel;
@property (nonatomic, retain) IBOutlet UILabel *secondFavoriteColorLabel;
@property (copy) NSString *secondFavoriteColorString;
@end
ElevatorView.m
#import "ElevatorView.h"
#import "Elevator2View.h"
@implementation ElevatorView
@synthesize Elevator2View, favoriteColorTextField, favoriteColorLabel, secondFavoriteColorLabel;
@synthesize secondFavoriteColorString;
-(IBAction)level1:(id)sender;{
favoriteColorTextField.text = @"1";
Elevator2View.favoriteColorString = [[NSString alloc] initWithFormat:@"Your favorite color is %@", favoriteColorTextField.text];
[self presentModalViewController:[[[Elevator2View alloc] init]
autorelease] animated:NO];
}
Elevator2View.h
#import <UIKit/UIKit.h>
@protocol PassSecondColor <NSObject>
@required
- (void) setSecondFavoriteColor:(NSString *)secondFavoriteColor;
@end
@interface Elevator2View : UIViewController{
IBOutlet UITextField *secondFavoriteColorTextField;
IBOutlet UILabel *favoriteColorLabel;
IBOutlet UILabel *secondFavoriteColorLabel;
NSString *favoriteColorString;
id <PassSecondColor> delegate;
}
@property (copy) NSString *favoriteColorString;
@property (nonatomic, retain) IBOutlet UITextField *secondFavoriteColorTextField;
@property (nonatomic, retain) IBOutlet UILabel *favoriteColorLabel;
@property (nonatomic, retain) IBOutlet UILabel *secondFavoriteColorLabel;
@property (retain) id delegate;
@end
Elevator2View.m
#import "Elevator2View.h"
@interface Elevator2View ()
@end
@implementation Elevator2View
@synthesize secondFavoriteColorTextField, favoriteColorLabel, secondFavoriteColorLabel;
@synthesize favoriteColorString;
@synthesize delegate;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void) viewWillAppear:(BOOL)animated
{
favoriteColorLabel.text = favoriteColorString;
}
- (void) viewWillDisappear:(BOOL) animated
{
// [[self delegate] setSecondFavoriteColor:secondFavoriteColorTextField.text];
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
favoriteColorLabel.text = favoriteColorString;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
【问题讨论】:
-
1.发布
Elevator2Viewcode。 2.即使您不关心命名约定,也请不要将变量命名为与类相同。 -
这里是 Elevator2Viewcode 的代码。
-
另外(添加到@Kreiri 的评论)在使用属性时,不要同时声明 iVar,不要合成。始终使用属性语法 self.property 引用它们。 See here 了解详情。如果您用这些建议清理了您的问题,将会有所帮助。
标签: ios protocols appdelegate