こんにちは、ViewControllerのテキストフィールドからAppDelegateに入力をコピーしようとしています。いいえ、その逆ではありません。
私がこれをやろうとしているので、NSLogは私にこれを与えます:
StruktonTest[8467:11603] (null)
ところで、StruktonTestは私のTestappの名前です。
ViewControllerでテキストを取得するコードは次のとおりです。
if ([[[self m_textfield] text] length] == 10) {
m_textfield.text=[NSString stringWithFormat:@"%@", m_textfield.text];
NSLog(@"%@", m_textfield.text);
telefoonnummer = m_textfield.text;
次のようにAppDelegate.hファイルにコピーします。
@interface LocationDelegate : NSObject <CLLocationManagerDelegate>
{
UILabel * resultsLabel;
NSString *phonenumber;
}
- (id) initWithLabel:(UILabel*)label;
-(id)initWithDictionary:(NSDictionary *)dict;
-(id)initWithName:(NSString *)aName;
-(NSDictionary *)toDictionary;
@property (nonatomic , retain) NSString *phonenumber;
そして、これがViewControllerからの私のコードです、多分私はここで間違いを犯します:
@interface LocationTestViewController : UIViewController <CLLocationManagerDelegate> {
IBOutlet UILabel * m_significantResultsLabel;
IBOutlet UISwitch * m_significantSwitch;
IBOutlet UISwitch * m_mapSwitch;
IBOutlet MKMapView * m_map;
IBOutlet UITextField * m_textfield;
NSString *String;
IBOutlet UILabel * mobielnummer;
IBOutlet UILabel * deellocatie;
IBOutlet UILabel * welldone;
IBOutlet UILabel * locatiemaps;
IBOutlet UILabel * mapslocatie;
NSString *telefoonnummer;
LocationDelegate * m_significantDelegate;
// location objects
CLLocationManager* m_gpsManager;
CLLocationManager* m_significantManager;
}
-(IBAction) actionSignificant:(id)sender;
-(IBAction) actionMap:(id)sender;
-(IBAction) actionLog:(id)sender;
-(IBAction)changrGreeting ;
@property (retain, nonatomic) IBOutlet UILabel * m_significantResultsLabel;
@property (retain, nonatomic) IBOutlet UISwitch * m_significantSwitch;
@property (retain, nonatomic) IBOutlet UISwitch * m_mapSwitch;
@property (retain, nonatomic) IBOutlet MKMapView * m_map;
@property (nonatomic ,retain) IBOutlet UITextField *m_textfield;
@property (nonatomic, copy) IBOutlet NSString *String;
@property (nonatomic, retain) IBOutlet UILabel *mobielnummer;
@property (nonatomic, retain) IBOutlet UILabel *deellocatie;
@property (nonatomic, retain) IBOutlet UILabel *welldone;
@property (nonatomic, retain) IBOutlet UILabel *locatiemaps;
@property (nonatomic, retain) IBOutlet UILabel *mapslocatie;
@property (nonatomic , retain) NSString *telefoonnummer;
@end
そしてこれは私のAppDelegate.mからのコードです
LocationTestViewController*locationTestViewController = [[LocationTestViewController alloc]init];
phonenumber = locationTestViewController.telefoonnummer;
NSLog(@"%@", phonenumber);
だから私はこれをコピーするときにNULLを受け取ります。誰かがこれを修正する方法を知っていますか?いただければ幸いです。