Posts

Post not yet marked as solved
2 Replies
1.6k Views
I have been using this code to increase/decrease font size on WKWebView and it has been working fine.let js = "document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust='\(fontSize)%However, it suddenly stopped working with iPadOS while it still works with iOS13.Is this a bug of iPadOS's WKWebView?If not, I would appreciate your advice on how to fix it.Thanks!
Posted Last updated
.
Post not yet marked as solved
0 Replies
329 Views
I have been trying to reduce build time of my project.While doing it, I found some strange behavior of Xcode.Current build time of our project is as follows:1) Clean build (dev config) : 288 sec2) Normal build (dev config, 1 line code change): 74 secBreakdown of build time: CompileSwiftSources (1 task): 34 secLd (2 tasks): 30 secPhaseScriptExecution (5 tasks) : 4 secCodeSign (3 tasks): 2 secDitto (2 tasks): 1 sec3) Normal build (dev config, no code change): 39 secBreakdown of build time: Ld (2 tasks): 30 secPhaseScriptExecution (5 tasks) : 4 secCodeSign (3 tasks): 2 secTaking long for clean build is fine. However, I think it is strange that it takes 30 seconds to link codes by "Ld" even when no code is changed. I asked one of my colleagues to do the same research with his private project, and it turns out that "Ld" does not appear in the build time breakdown when no code is changed. So I think there might be something wrong with my project and wonder how to fix it.Is there anyway to reduce this link time?
Posted Last updated
.