This is my technical blog about programming, server setup & configuration, technical learning experience.
For example, we have array like this
1 |
|
Recently I’ve faced a weird bug about displaying image from URL to UIImageView
. Finally I found out is the header issue.
There are few steps to add custom font in your Xcode project.
UIAppFonts
to your Info.plist1 | <key>UIAppFonts</key> |
Have you ever face a problem, when there is GET request, it shows the form properly. However when there is POST request, there are 2 situations:
I’ve encounter this issue in RSA decryption (RSA_private_decrypt
)
1 | int result_length = RSA_private_decrypt(64, (unsigned char*)crypt_chunk, (unsigned char *)result_chunk, rsa_privateKey, RSA_PKCS1_PADDING); |
I have few friends as me about this.
– How iOS can retrieve/update from/to MySQL/MSSQL database? –
There are 2 parts:- Server side and Client side