Posts

Post not yet marked as solved
0 Replies
677 Views
Logs are often printed out while the app is running. Could not signal service com.apple.WebKit.Networking: 113: Could not find specified service Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service Could not signal service com.apple.WebKit.Networking: 113: Could not find specified service How can i fix it?
Posted
by liuweili.
Last updated
.
Post not yet marked as solved
1 Replies
1.2k Views
When I created the .a package with a script, I kept getting an error message: Building for iOS Simulator, but the linked framework '***.framework' was built for iOS. (in target '***' from project '***') What configuration should I modify to fix this problem?
Posted
by liuweili.
Last updated
.
Post not yet marked as solved
1 Replies
559 Views
I found that the CFURLCreateStringByAddingPercentEscapes method has been deprecated in iOS9.0. Below is my previous code:// UTF-8-> GBK-(NSData *) encodeStringUseGB_18030_2000: (NSString *) src { // GBK + urlEncode NSStringEncoding enc = CFStringConvertEncodingToNSStringEncoding (kCFStringEncodingGB_18030_2000); NSString * encodedString = (NSString *) CFBridgingRelease (CFURLCreateStringByAddingPercentEscapes (kCFAllocatorDefault, (CFStringRef) src, NULL, CFSTR (": /? # [] @! $ & '() * +,; ==" "> \\ ^ ~ `"), enc)); return [encodedString dataUsingEncoding: enc];}I used stringByAddingPercentEncodingWithAllowedCharacters to replace it according to the documentation, but I have not been able to get the correct results. What should I do to get the same result as the previous code?
Posted
by liuweili.
Last updated
.