2017-10-24 17 views

답변

1

사용자 정의 페이지 클래스의 PCL 프로젝트에서 OnBackButtonPressed를 재정의해야합니다.

protected override bool OnBackButtonPressed() 
{ 
    // call your custom navigation code here 

    // returning true because you are handling the navigation 
    return true; 
} 

이 이벤트는 하드웨어 뒤로 버튼을 누르면 발생하지만 iOS에서는 발생하지 않습니다.

+0

대단히 감사합니다. –