私はiPhone開発の初心者なので、少し質問があります。
これは私のviewcontroller.mです
//
// ViewController.m
// Conversie talstelsels
//
// Created by Stijn Hoste on 16/11/12.
// Copyright (c) 2012 Stijn Hoste. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@synthesize lblOct;
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)txtGetal:(id)sender {
lblOct.text = @"derp";
}
@end
これは私のviewcontroller.hです
//
// ViewController.h
// Conversie talstelsels
//
// Created by Stijn Hoste on 16/11/12.
// Copyright (c) 2012 Stijn Hoste. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
- (IBAction)txtGetal:(id)sender;
@property (weak, nonatomic) IBOutlet UILabel *lblDec;
@property (weak, nonatomic) IBOutlet UILabel *lblOct;
@property (weak, nonatomic) IBOutlet UILabel *lblHex;
@end
だから私がこれをやろうとすると:@synthesize lblOct; 次のエラーが発生します。これを実行しようとすると、不正なインターフェイス修飾子が表示されます。lblOct.text = @ "derp"; それは私にこのエラーを与えます:宣言されていない識別子「lblOct」の使用、あなたは「_lblOct」を意味しましたか?
誰かがこのおそらく簡単な問題で私を助けることができますか?
前もって感謝します!