Posts by Carl Brusell • 94 points
7 posts
-
0
votes3
answers2440
viewsA: Would the HTTP 418 "I’m a Teapot" response be valid?
By definition, all status codes starting with 4 are "Client Error" status code. Therefore, you need to consider this as a failure. Success status is those that start with 2. 418 I'm a teapot is a…
http-statusanswered Carl Brusell 94 -
2
votes2
answers497
viewsA: How to receive value from a variable of another Class
There are several ways to do this, I believe the easiest way is to pass the value via attribute. Declare in Viewcontroller1 as attribute the value you want to pass. var numeroAleatorio = 4 In…
-
0
votes2
answers67
viewsA: Parse’s design with black stripes
Go to the Images.xcassets file, look for the Launchimage item and make sure that all the images for the devices that will run your app are in this file. Don’t put picture to iPad if your app doesn’t…
-
2
votes1
answer92
viewsA: App name does not appear after downloading from APP Store
The application name is inside the Info.plist file in the Bundle Name attribute. You can delete the default value and write your app name on it. If this attribute is not created, I recommend you…
-
0
votes1
answer140
viewsA: Build for iOS and Android
You will need to rewrite everything. Register the same account in the Xcode and use the same Bundle ID as the version that is already in the store. Remember that the version number and build number…
-
1
votes1
answer84
viewsA: mathematical function class (regression) in SWIFT
There is no native iOS solution for graphics generation, but there are third-party libraries that do the job very well. There is a library called Ios-Charts that was written in Swift. It was…
-
2
votes0
answers107
viewsQ: Trying to login with Facebook and returns Fberrorcategoryusercancelled
Facebook Login on iOS works in 3 ways: Try logging in via native iOS login if the user has this option configured; Try logging in through the Facebook app if it is installed; Open the Facebook site…