gpt4 book ai didi

ios - UIWebView 是如何实现分页的?

转载 作者:行者123 更新时间:2023-11-28 17:50:42 24 4
gpt4 key购买 nike

我需要对我的 ePub 电子书进行一些定制。我想知道是否可以理解 UIWebView 如何在页面上划分自己?我知道如何以编程方式进行此操作我想知道它是如何在 UIWebView 中实现的。也许它添加了一些标签(“div”或者可能是别的东西)来达到这样的效果?我知道它不是开源组件,但我只需要任何建议来做出进一步的决定。

听说我按我的意思放了一张图片。

enter image description here

最佳答案

arrHtmlPage=[[NSMutableArray alloc] initWithObjects:@"2",@"3",@"5",@"6",@"8",@"9",@"11",@"13",nil];

NSBundle *bundle = [NSBundle mainBundle];

NSString *htmlTemplateLink = [bundle pathForResource:@"2" ofType:@"htm"];

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL fileURLWithPath:htmlTemplateLink]];

wview=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 768, 940)];
wview.scalesPageToFit = YES;
[wview loadRequest:request];
wview.delegate=self;

wview.userInteractionEnabled=YES;

[self.view addSubview:wview];

也这样做

typedef NS_ENUM(NSInteger, UIWebPaginationMode) {
UIWebPaginationModeUnpaginated,
UIWebPaginationModeLeftToRight,
UIWebPaginationModeTopToBottom,
UIWebPaginationModeBottomToTop,
UIWebPaginationModeRightToLeft
}

关于ios - UIWebView 是如何实现分页的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39037692/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com