This commit is contained in:
Nick Schonning 2018-11-12 11:59:52 -05:00 коммит произвёл Craig Dunn
Родитель 354f3222c1
Коммит 44a48d5a78
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -83,13 +83,13 @@ namespace Phoneword_iOS
// set the View Controller thats powering the screen were
// transitioning to
var callHistoryContoller = segue.DestinationViewController as CallHistoryController;
var callHistoryController = segue.DestinationViewController as CallHistoryController;
//set the Table View Controllers list of phone numbers to the
// list of dialed phone numbers
if (callHistoryContoller != null) {
callHistoryContoller.PhoneNumbers = PhoneNumbers;
if (callHistoryController != null) {
callHistoryController.PhoneNumbers = PhoneNumbers;
}
}

Просмотреть файл

@ -17,7 +17,7 @@ namespace Working_with_images
// class-level declarations
UIWindow window;
// Added contoller. As of MonoTouch 5.0.2, applications are expected to
// Added controller. As of MonoTouch 5.0.2, applications are expected to
// have a root view controller at the end of application launch
UIViewController controller;