Posts by Arthur Rocha • 86 points
4 posts
-
0
votes2
answers248
viewsA: App Store Submit Error - Itunes Connect
By searching the stack, I found an answer to your error. All you have to do is delete Newsstand Icon. I hope it helped.…
-
0
votes1
answer137
viewsA: Ios Swift Tableview cleaned when returning the screen
From what I understand, you’re using another follow to return to the page. This causes you to recreate the page again, starting in viewDidLoad if I’m not mistaken. Since you don’t have images of…
-
1
votes2
answers70
viewsA: Picker View - Display an Imageview according to the sum of values
First you need to know which array wants to extract the value. If this is the case with the number array, use [1], which would be the second index of your pickerDataSource array. [Row] would be the…
-
6
votes2
answers166
viewsA: IOS - How to scale a view by Swift?
You can do this with this code below : let x = CGFloat(0) let y = CGFloat(0) let height = CGFloat(100) let width = CGFloat(100) viewV.frame = CGRectMake(x, y, height, width) Your normal viewV Your…