I wrote already about nm which is a great tool to analyze the binaries. This can be used to quickly check whether a binary supports BitCode or not. Just open a terminal where your binary stored and use this command: nm -a -U -A -m <filename> | grep -i bitcode
Category: Uncategorized
iOS Objc Presentation
You can find my presentation about iOS ObjC development – basic/advanced mix, tips and tricks iOS ObjC Presentation
Strange UIAlertView crash
On iOS8+ presenting an AlertView can lead to a crash: NSInternalInconsistencyException what you cannot really catch. Spending quite some time around this I realized the issue comes when the keyboard is open. Closing the keyboard (endEditing) solves the issue. I also found a good thread about this at stackoverflow
To know how symmetric/asymmetric encryption is used in every day
Just found this good reading about how the symmetric and asymmetric encryption is used in email clients, ssl etc. In an understandable way. http://www.infosecisland.com/blogview/4497-Public-Key-Private-Key-Secret-Key-Everyday-Encryption-.html