我正在尝试放大和缩小 UIWebView 中的文本,我有一个用于缩放 UITextView 的功能,即:
- (IBAction)ZoomOutFunction{
@try {
UIFont *font = self.detailTextView.font;
if(self.detailTextView.font == [font fontWithSize:13])
self.detailTextView.font = [font fontWithSize:13];
else
self.detailTextView.font = [font fontWithSize:font.pointSize-1];
}@catch (NSException *err) {
NSLog(@"Error handler : %@", err);
}
}
每次单击按钮时,我都想添加/减去字体(一种大小),我有两个按钮(一个用于放大,另一个用于缩小)。
上面的函数不适用于 UIWebView,那么我应该在这个函数中进行什么调整以使用 UIWebView。
谢谢,