我想學習使用iOS構建應用程序。我使用Xcode 6.4,並且the tutorial I was following似乎接受使用樂趣和重寫,但是當我嘗試它時,它會帶來錯誤。我將受保護的頁面連接到我的註冊頁面。製作第一個iOS應用程序
#import "ViewController.h"
@interface ViewController()
@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.
- (void)ViewDidAppear(animated: bool) {
[self.PerformSegueWithIdentifier("LoginView", sender: self)];
}
}
@end
有人能幫我指出我的錯誤和解決方案嗎?
爲什麼'didReceiveMemoryWarning'方法中的'viewDidAppear:'方法?爲什麼'viewDidAppear:'方法使用與其餘代碼不同的語言編寫? – rmaddy
您正在使用Swift進行教程,但已經開始了一個使用Objective-C作爲默認語言的項目。 – Groot
謝謝rmaddy我已經將didDceiveMemoryWarning中的ViewDidAppear方法移出,但仍然出現錯誤和語言位,我認爲我沒有更改語言,任何幫助使用正確的代碼將不勝感激 –