Questions tagged as 'ios'

1
answer

Project XCODE generated with Unity 5.3.4 is closed when I run it on an IPAD2

I have a project in XCODE generated with Unity 5.3.4. The problem is that when you run it on an iPad2 it closes instantly. When running it on my iphone 5 it works fine. Both devices have iOS 9.2. I enclose the log that reports to me on iPa...
asked by 25.04.2016 / 23:40
2
answers

iOS and Google Maps Premium Plan

Is it possible to use the Google maps Premium key in an iOS application without having to import the Google Maps SDK? Or is it necessary to import the SDK? greetings     
asked by 03.10.2016 / 17:25
1
answer

Swift Project 2 without StoryBoards

I would like to create a project in Swift 2 that does not work with storyBoards since in Objective-C I am used to working with XIBs . Some time ago I was testing with Swift 1.x and I remember that to assign the VC to rootViewC...
asked by 30.12.2015 / 15:12
1
answer

TableView reactive in swift

I was thinking about creating a UiTableView that follows the pattern MVVM (Model-View-ViewModel) to be able to make the data in the table refresh automatically when there is a change in these, be it a new element, an update or a deletion wit...
asked by 22.02.2018 / 17:25
1
answer

Using objects as properties of another class Swift 3

I am new to Swift, I have a class that has properties that belong to other classes. class Pizza { var tamaño=Tamaño.self var masa=Masa.self var queso=Queso.self var ingredientes = [Ingrediente]() var aa:String = "" } The...
asked by 20.08.2017 / 01:01
2
answers

Form in IOS

I'm doing an app in swift and I need to make a form like this: At the beginning I was doing it with a UITableVIew , but at the time of writing, when the keyboard was displayed, I scrolled and the field was not visible. I ha...
asked by 30.09.2016 / 07:12
2
answers

Parameter step of a viewController son to parent after doing a dismiss

From a parent controller I call another child ( popoverContent ) with self.present , the child driver is a typical view in the form of a popup that I end up closing with a dismiss but I want to pass some data to the parent view....
asked by 31.01.2018 / 00:10
1
answer

Change of html between desktop and mobile safari

I'm programming a page and in a certain section you have a p to place two phone numbers. However, when I open the page in iphone safari, the html has an extra href, which I did not write. on the left is the code on mobile and the right on the de...
asked by 05.10.2018 / 23:34
2
answers

Convert an array to json from swift

I need to convert an array of strings that I get from an xml, into a json file and then save it in a sqlite database. I have this code: do { let jsonData = try NSJSONSerialization.dataWithJSONObject(dictionaryOrArray, options: NSJSONWrit...
asked by 12.08.2016 / 11:23
1
answer

Sort with NSSortDescriptor

I am trying to show in UITableViewController my items stored in Core Data in a specific order given by one of its attributes. There is an attribute that can be 1 or 0 and my intention is to show first those whose value is 1. NSFetchRequ...
asked by 16.12.2015 / 10:47