页面跳转/PDF信息获取

``` /// 切换横竖屏 /// @param dirction wskHorizontal:横屏, wskVertical:竖屏 - (void)WS_Method_SwitchLayoutDirction:(WSLayoutDirection)dirction; ``` ``` /** 获取pdf总页数 */ - (int)WS_Method_GetPdfPageCount; ``` ``` /** 跳到指定页 @param pageIndex 页码 */ - (void)WS_Method_JumpToPage:(NSInteger)pageIndex; ``` ``` /// 获取当前页 (返回的页码从0开始) - (int)WS_Method_GetCurrentPage; ```