In iOS, when using a UICollectionView with horizontal scrolling and only one row of cells: if all the cells have the same width, the spacing between cells is determined by minimumLineSpacing. If the cell widths are different, the spacing between cells is controlled by minimumInteritemSpacing. However, when the cell widths are different and the collectionView's height is smaller than the height of the cells, the minimumInteritemSpacing is applied to the left side of the first cell, causing the left margin of the first cell to become wider. Why does this happen?
Post
Replies
Boosts
Views
Activity
Hi! My project has a requirement: The WKWebView JS and CSS files load the local cache, while the data is fetched from the server. When I was in a "- (void) webView: (WKWebView *) webView startURLSchemeTask: (id < WKURLSchemeTask >) urlSchemeTask" to intercept requests and access to the cache executed [urlSchemeTask didReceiveResponse: response]; [urlSchemeTask didReceiveData: data]; [urlSchemeTask didFinish]; In the iOS version < 13 OS no response, and can't display the web content, log "output Could not signal service com. Apple. Its the WebContent: 113: Could not find specified service", but on iOS13 mobile phone can display properly. What's going on here? What should I do?