當用戶點擊alertviewController中的按鈕,然後我打開一個viewcontroller使用目前modally segue,這個打開的viewcontroller有webview加載pdf文件。這個pdf文件存儲在應用程序和我使用webview當PDF文件在網頁視圖中打開加載this.But請求,web視圖不滾動在webview中的pdf文件不滾動
下面的代碼加載PDF文件中的WebView
override func viewDidLoad()
{
super.viewDidLoad()
let filePath = NSBundle.mainBundle().pathForResource("Tutorial - Guided Access and Guided Access passcodes", ofType: "pdf")
GANoticeWebView.loadRequest(NSURLRequest(URL: NSURL(fileURLWithPath: filePath!)))
GANoticeWebView.scalesPageToFit = true
GANoticeWebView.scrollView.bounces = true;
self.view .addSubview(GANoticeWebView)
這個PDF文件有2頁。但是由於webview不滾動,用戶只能看到頁面的前半部分。
請幫我這個。
由於提前
是'GANoticeWebView'的框架正確 –