Posts by Skalwalker • 265 points
12 posts
-
1
votes5
answers2115
viewsA: How to make the keyboard disappear when click out of it? Swift
You can simply make the keyboard close as follows: override func touchesBegan(touches: Set<NSObject>, withEvent event: UIEvent) { self.view.endEditing(true) } Only thing needed to work is to…
-
0
votes3
answers392
viewsA: Import a Swift into another Swift
To call a class within another class we do not use the import. Within the class ViewController you create a variable and set the value. Example: let meni = Meni()…
-
0
votes2
answers371
viewsA: Swift Multi Selection Problem Uitableview
I’ve never worked with custom ballots, but let’s see what I can do to help. Make sure your tableView features Note Separator attributes in the default . Also ensure the same attribute on the ballot…
-
0
votes0
answers203
viewsQ: Uitextfield does not take the text value of a Swift Array
Guys, I’m using core data to save user input to an array. Until then the code works perfectly, the problem is when to take some element of this array and put in the Uitextfield. The code doesn’t…
-
1
votes0
answers30
viewsQ: Apple can’t see my Ad
I sent my app for review, because they say they can’t locate my ad: Your submitted IAP indicate that your app serves Advertisements. However, we Were Unable to locate ads in your app. Please reply…
-
1
votes1
answer148
viewsQ: Minus In App Purchase (IAP) Swift Ad
I’m trying to use In App Purchase to remove ads from my app, but the ads are located in a different view than where the IAP code is. I think I’m removing in an inefficient or wrong way, because the…
-
2
votes2
answers838
viewsA: Map showing search location Swift
How to make the map show search location using coordinates without external api First I created a Geocoder: var geocoder = CLGeocoder() Then I used the method to find an address string and put it in…
-
2
votes1
answer229
viewsQ: Mkmapview circular Swift
I wonder if you can leave Mkmapview in Xcode with circular format. I tried to use mapView.layer.cornerRadius, but I still could not
-
2
votes2
answers838
viewsQ: Map showing search location Swift
Guys, I’d like to know how I can get my map to show the place that was searched and center the view at this point. I was able to do with the current location as follows:…
-
2
votes2
answers180
viewsQ: How to delete Tableviewcell as a Swift Dictionary
I’m trying to rule out a TableViewCell using Swipe to delete style, but I cannot delete Cells. Cells are being created by a dictionary that creates each with the key as title and value as details.…
-
2
votes1
answer549
viewsQ: Calling dictionary in another View Controller Swift
I am trying to pass a dictionary from one Viewcontroller to another, I have succeeded, but the dictionary I am passing through is empty. I want to pass the dictionary after adding the userinput when…
-
3
votes1
answer709
viewsQ: Turning user input into button label
Guys, I’m trying to create a button that when pressed enables a text field that should take the user input and change the button label to input, but when I tried to play only got the following…