私は 4 つの Xcode プロジェクト (GPS、加速度計、コンパス、MySQL) を持っています。
それぞれが個別に正常にコンパイルされており、正常に動作しています。
GPS、加速度計、コンパスの情報を mySQL データベースに送信できるように、それらすべてを 1 つのプロジェクトに結合したいと考えています。
プロジェクトから必要なフレームワークを別のプロジェクトにコピーしようとしまし.h
た。.m
主にここで問題が発生します:
- (IBAction)insert:(id)sender
{
// create string contains url address for php file, the file name is phpFile.php, it receives parameter :name
//NSString *strURL = [NSString stringWithFormat:@"http://localhost/phpFile.php?name=%@",txtName.text];
NSString *strURL = [NSString stringWithFormat:@"http://localhost/phpFile.php?name=%@",speedLabel.text]; ************< use of undefined identifier 'speedLabel'****
// to execute php code
NSData *dataURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];
// to receive the returend value
NSString *strResult = [[[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding]autorelease];
NSLog(@"%@", strResult);
}
speedLabel が含まれている構造は次のとおりです。
@interface CoreLocationDemoViewController : UIViewController <CoreLocationControllerDelegate> {
CoreLocationController *CLController;
IBOutlet UILabel *speedLabel;
IBOutlet UILabel *latitudeLabel;
IBOutlet UILabel *longitudeLabel;
IBOutlet UILabel *altitudeLabel;
IBOutlet UILabel *timeLabel;
}
ご協力いただきありがとうございます