Error in iOS 10:Unable to Copy Asset Information from Https://Mesu.Apple.Com/Assets/ for Asset Type

Error in iOS 10 : Unable to copy asset information from https://mesu.apple.com/assets/ for asset type

I have end up with below solution. Follow the steps.

  • Set the the Environment Variable in Edit Scheme.
    Sample Image
  • Restart the xcode.
  • Clean & build xcode.

& than work perfectly on my side.

Errors IOS 10 - Unable to copy asset information from https://mesu.apple.com/assets/ for asset type com.apple.MobileAsset.TextInput.SpellChecker

I figured it out programmatically. I added

tf.autocorrectionType = .no 

to stop the spell check.

 let emailTextField: UITextField = {
let tf = UITextField()
tf.placeholder = "Email Address"
tf.translatesAutoresizingMaskIntoConstraints = false
tf.addTarget(self, action: #selector(handleTextInputchange), for: .editingChanged)
tf.autocorrectionType = .no
return tf
}()

Getting Firebase MobileAssetError warning in XCode 8

Updated xcode and all of my pods. Everything works well now. If you are having the same problem try doing that. New versions can come with these problems. Looking for updates regularly after a launch helps get rid of this things.



Related Topics



Leave a reply



Submit