Questions tagged [xcode8]

Xcode 8 is an IDE created by Apple for the development of macOS, iOS, watchOS, and tvOS applications. The first release of Xcode 8 was on June 13th, 2016 with Xcode 8 beta build 8S128d. *Do not use this tag unless your question specifically involves the Xcode IDE!*

Xcode 8 is an Apple integrated development environment (IDE). This version of Xcode includes the SDKs for macOS 10.12 iOS 10, watchOS 3, and tvOS. The beta is available free for developers from https://developer.apple.com/ and will be released in the fall from the Mac App Store.

The latest production version of the IDE is Xcode 8.2.1 (8C1002) (Dec 19, 2016)

**Latest Preview : Xcode 8.2 beta 2 (8C30a) released on Nov 14, 2016.

The tag should only be used for questions about the Xcode 8 IDE itself, and not for general macOS, iOS, watchOS, or tvOS programming topics. Use for Mac programming questions, and or for iOS programming questions.

If the question is related to the Xcode IDE in general (not specific to Xcode 8), use the tag.

4206 questions
1
vote
0 answers

EditActionsForRowAt not working for two tableView on Scrollview in Swift 3

I use two tableView with 5 and 3 cells over scrollview . Trying to use swipeable gesture on both tableView using editActionsForRowAt method of tableView But it just swipe only three cells of first tableView and other cell swipe by trying 5 to 7…
Lalit Pratap
  • 119
  • 1
  • 11
1
vote
1 answer

Source Code Option is not showing in Plist

In my Xcode 8.3.2 open as source code option is not displaying.
1
vote
0 answers

How to get a copy of private key xCode?

I am facing this issue in order to create a build. Please help if someone also faced this issue before.This is the screenshot of the issue I am facing
1
vote
1 answer

Xcode Model I/O - importing custom shader from Marmoset

Accordion to Apple Model I/o documentation: Block quote You can use this framework to import and export assets from and to a variety of industry standard file formats supported by popular authoring tools and game engines. Block quote And Block…
Mane Manero
  • 3,086
  • 5
  • 25
  • 47
1
vote
1 answer

UIImagePickerController working without NS Photo Library and Camera descriptions

I am working with UIImagePickerController because I am creating an application that allows for the posting of images through both the photo library and camera. I created a basic demo that consists of a UIImageView, UIButton with some code to set up…
kcwargel
  • 13
  • 3
1
vote
1 answer

SceneKit PBR - photorealism

Is it possible to get same level of photorealism with SceneKit as Unreal Engine 4? What are some examples of photorealism on SceneKit or Metal2?
Mane Manero
  • 3,086
  • 5
  • 25
  • 47
1
vote
1 answer

CocoaLumberjack - change log file name by subclassing the LogFileManager

I am trying to change the logfile name. What i've found so far is this. My subclass of DDLogFileManagerDefault looks like this: LogFileManager.h @import CocoaLumberjack; // this import would work as well // #import…
ecth
  • 1,215
  • 1
  • 16
  • 33
1
vote
2 answers

How to add an Array to firebase using Swift (Xcode)

Here is my JSON Structure (Ignore the username to email part of it, that is for a test) { "Username" : { "Username" : { "email" : "test@gmail.com" } }, "uid_0" : { "Song List" : [ "The National Anthem" ] } } I am making a…
user9063326
1
vote
1 answer

‘mach-o, but wrong architecture’ in updated iOS version (>9.3.5)

dyld: Library not loaded: @rpath/SocketIO.framework/SocketIO Referenced from: /var/containers/Bundle/Application/86B94D41-988D-4F2B-8624-588B72CD90B5/BendTheBar.app/BendTheBar Reason: no suitable image found. Did find: …
1
vote
1 answer

why is collection view header loading before viewdidload?

I am trying to add a activity indicator but I am not able to do so successfully because my collection view header is loading before viewdidload so therefore I have things showing before my activity indicator even starts. Can someone please help me…
j.iese
  • 171
  • 2
  • 12
1
vote
1 answer

Can't Edit Tile Map Xcode 8

i cant find the editor bar of the Tile MAp and when i click of editor i cant select the edit tile map (i already clicked done), i searched ovreall but i cant find anything about this
Gallaoui
  • 501
  • 4
  • 19
1
vote
1 answer

pushViewController is not run if i do not assign object to self

Please explain in DETAIL why do we have to write "obj?.mainObj = self" line, in order for the pushViewController method to work?so if i remove the line "obj?.mainObj = self" pushViewController doesn't work,but why? class ViewController:…
oj229
  • 27
  • 3
1
vote
0 answers

Using iPhoneX whole screen area without XCode 9 and iOS 11 Base SDK

When iphone 4 was released, it had a different aspect ratio than previous devices and the old apps used to run in compatibility mode with top and bottom black area letterboxing. One was able to fix it by simply adding a 320x568 size png file with…
Nikhil Mathew
  • 687
  • 7
  • 17
1
vote
1 answer

"Show iteration count" on XCode 8.3.3 does not show the indication on the respective files

Although I have enabled the option "Show iteration count" on XCode 8.3.3 XCode does not display the count on the respective files after I have performed the tests on the project. What could be going wrong?
abinop
  • 3,153
  • 5
  • 32
  • 46
1
vote
1 answer

Xcode Swift Firebase Auth using phone number and password

I have been doing loads of research on this and i could'nt find anything that suits my needs. What i want to do is allow the user to sign in to my app using either his email or phone number and password like on Twitter and facebook. I know that…