Questions tagged [xcode10.2]

For questions about the 10.2 version of Xcode. Use this tag in combination with the general [xcode] tag. If your question applies to Xcode more generally, use only the [xcode] tag.

151 questions
2
votes
2 answers

Trouble installing Xcode 10.2 beta command line tools and additional tools

I downloaded Xcode 10.2 beta from https://developer.apple.com/download/, unzipped it and moved to the applications folder. I also downloaded "Additional Tools for Xcode 10.2 beta" and "Command Line Tools (MacOS 10.14) for Xcode 10.2 beta" from…
eggroll
  • 1,049
  • 9
  • 18
1
vote
0 answers

Creating scrollview for custom dialog box in Swift

I have custom dialog box which has following contents here I wanted to know what constraints i have to give for view which is under scrollView, I also want View dynamically grow so that whenever needed scrollView can appear. If you could help…
Pranjali Wagh
  • 338
  • 1
  • 3
  • 14
1
vote
0 answers

On Catalina, Xcode 10 is "verified" every startup

I'm seeing my Xcode 10 (downloaded as I always do from the developer downloads website and not from the App Store) get verified EVERY single startup on Catalina 10.15.1 Does anyone know a workaround? I really regret upgrading to Catalina - like…
Nostradamus
  • 1,497
  • 3
  • 20
  • 34
1
vote
1 answer

Device check API: Error: Unable to verify authorization token

I am using Xcode10, Swift 5 and SwiftJWT to generate JSON Web token in order to authenticate Device Check API. Below is the method let key8 = """ -----BEGIN PRIVATE KEY----- MIGTAgEAMBMGByqGSM49AgEGCCq... -----END PRIVATE KEY----- """ let myHeader…
Ashfaque
  • 1,254
  • 1
  • 22
  • 38
1
vote
2 answers

iPhone Increase font size for larger devices

I have simple app that has some views to show. It is portrait app so I do not have to build any other design for orientation specific. But I have one trouble(Being new on iOS), I have read about size classes and yet I am unable to understand that…
A.s.ALI
  • 1,992
  • 3
  • 22
  • 54
1
vote
0 answers

Issues in exporting ipa from xcarchive file using xcode in jenkins machine

I am finding an issue while exporting an IPA from an xcarchive file using xcode in jenkins machine. It was working before with xcode 10.1 with swift 4 but with updating xcode 10.2 with swift 5 its not working Issues by running this command on…
Siddh
  • 712
  • 4
  • 21
1
vote
0 answers

Xcode 10.2.1: Jump to Operator Definition?

I'm working on a Swift codebase in Xcode, and there are a bunch of custom operators. Usually, for regular symbols/functions/variables, I can just press ctrl + cmd + click on it and the editor will jump to the definition. In other versions of Xcode,…
Elliot Schrock
  • 1,406
  • 2
  • 9
  • 20
1
vote
0 answers

NSAllowsArbitraryLoads in macOS unit test

I've written a macOS app that serves up some HTTP endpoints. I'm trying to test them in a unit test, but the URLSession request returns with an error: The resource could not be loaded because the App Transport Security policy requires the use of a…
Rick
  • 3,298
  • 3
  • 29
  • 47
1
vote
0 answers

Unable to run ios app with react native after upgrading to Xcode 10.2 and swift 5

The app used to work fine earlier with swift v3, Xcode v10.1 and react-native v54.4, but then I upgraded it to swift 5 and Xcode 10.2, and successfully converted all the swift codes from 3 to 5. I also updated react-native to 59.9 and other…
robben
  • 637
  • 1
  • 7
  • 14
1
vote
0 answers

Xcode 10.2.1: A valid provisioning profile for this executable was not found

When provisioning a React Native application for Release (Debug works) in Xcode I run into a familiar error here on Stackoverflow when trying to run it on a device for testing: A valid provisioning profile for this executable was not found But the…
Peter G.
  • 7,816
  • 20
  • 80
  • 154
1
vote
0 answers

MessageKit won't build when integrating into app

I'm trying integrate MessageKit with my project. I'm getting 3 errors when attempting to build: 1. Header 'MessageKit-Swift.h' not found 2. :0: error: could not build Objective-C module 'MessageKit' 3. No such module 'InputBarAccessoryView' I've…
1
vote
1 answer

How to management team for update id, username in field id_team on other table

Summarize the problem After sign in using the username = user, I want to update the id_team field in the tb_user table by sending user id = id, username = update to the data. by sending id user = id, username = user. From the team management page.…
user9378998
1
vote
0 answers

unable to build clang on Xcode 10.2

Unable to build clang project using Xcode 10.2.1 on MACOS MOJAVE 10.14.4 I want to build and debug clang project on xcode. I could able to build it using command line MakeFile build system but not on Xcode. I am seeing link error on Xcode as…
srinivas
  • 21
  • 1
  • 4
1
vote
0 answers

Xcode 10.2 restore breakpoint line highlighting when stepping through?

I've had the macOS Mojave turned to dark mode and back a couple time. I'm seeing a weird bug where most of the time my breakpoint debugging no longer highlights the line currently being executed. I get a green bubble saying "Breakpoint" to the…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
1
vote
1 answer

Method collectionView (didSelectItemAt...) doesn't Work at iTunesConnect; However, It does Work on Debug

I've updated my Xcode to the latest version, currently it's 10.2.1(10E1001) and migrated my project from Swift 4 to Swift 5. It made me some troubles, but finally I've built my project and it works correctly from debug version on my iPhone. After…