Posts by Marcos Trovilho • 81 points
4 posts
-
1
votes1
answer527
viewsA: Generation of . IPA without a certificate?
For testing of development (not Adhoc): Compile the project (+ B); In the left bar of the Xcode look for the .app (briefcase Product); Right click and select Show in Finder; Create a folder called…
-
1
votes1
answer92
viewsA: How to fill a tableView using for loop and Dictionary
The method dequeueReusableCell(withIdentifier:) of UITableView serves to reuse cells, so each identifier will load a different cell. This is used to differentiate cells with layouts different. If…
-
3
votes1
answer216
viewsA: Doubt Encoding Utf8 Swift 3
The encoding is passed on in transformations String <=> Data, for example: let string = "Codificação" // String => Data let data = string.data(using: .utf8) // 13 bytes <...> // Data…
-
0
votes1
answer212
viewsA: Notification with sound on Swift
The sounds of notifications (local or remote) are intended to be an alert, so there are restrictions: Audio file in aiff, wav, or Caf (in Linear PCM, MA4 (IMA/ADPCM), µLaw or aLaw encodings); Be in…