TalkBot.IPhoneViewController.ViewDidAppear C# (CSharp) Method

ViewDidAppear() public method

public ViewDidAppear ( bool animated ) : void
animated bool
return void
        public override void ViewDidAppear(bool animated)
        {
            base.ViewDidAppear (animated);

            if ((_savedItemsController != null) && (_savedItemsController.SelectedSpeechItem != null)) {
                _currentSpeechItem.Text = _savedItemsController.SelectedSpeechItem.Text;
            }

            textField.Text = _currentSpeechItem.Text;
        }