iOS
iOS01. Preventing sensitive data leaks
UIApplication.shared.keyWindow.hidden = trueiOS02. Remove symbols from Xcode output
DEPLOYMENT_POSTPROCESSING = YES
GCC_GENERATE_DEBUGGING_SYMBOLS = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
COPY_PHASE_STRIP = YESiOS03. Manage sensitive data in Swift
iOS04. Disable auto-correction cache for sensitive input
iOS05. Disable copy and paste for sensitive data
iOS06. Manage app versions in the App Store
iOS07. Prevent application tampering
iOS08. Xcode compiler security and obfuscation options
Last updated
Was this helpful?