Posts by yasin • 168 points
4 posts
-
2
votes1
answer1167
viewsA: Install Facebook SDK on Android Studio
According to the website in the archive /app/build.gradle, before dependencies : repositories { mavenCentral() } On the build.Radle dependencies part put: dependencies { .... compile…
-
0
votes1
answer71
viewsQ: Open HTML with link using Nsattributedstring
I get from the server an HTML similar to this: "<br>Dummy text<br>Click <a href="www.google.com">Here</a>" On Click Here it should be possible to click and open in Safari. I…
-
2
votes1
answer602
viewsA: Mask for CNPJ in Objective C
I will answer myself because I found a way only using substring. What was wrong was the order of the indices. So follow my solution: NSString *finalCnpj = [NSString…
-
1
votes1
answer602
viewsQ: Mask for CNPJ in Objective C
I’m trying to put a mask on a string that’s a CNPJ. I get a string with size 14 and tried this way to put the mask: NSString *cnpj = [NSString stringWithFormat:@"%@.%@.%@/%@-%@", self.codCnpj…