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.
Questions tagged [xcode10.2]
151 questions
1
vote
3 answers
There's problem with PDFKit appeared after update to Xcode 10.2. Is there any way to solve?
The app crashes when I try to use pdfkit to display pdf-file. Here's the simple example:
import UIKit
import PDFKit
class ViewController: UIViewController {
@IBOutlet weak var pdfView: PDFView!
override func viewDidLoad() {
…

Degtiarev Aleksei
- 415
- 5
- 12
1
vote
1 answer
Does IONIC 1 support iOS12?
We have mobile application developed into IONIC 1. It is working fine with Android OS, but it is not working on iOS 12 devices. We are able to build an IPA file using XCode 10 with valid distribution certificate and provision profile. Once app is…

Ajit More
- 11
- 1
- 4
0
votes
1 answer
Suddenly "Could not build Module " is coming and it happens only for iOS devices, in Simulator it is working fine
As I am working on the iOS app since past few years, I was able to run it on devices and simulator both which is totally easy. But from few days I am facing a time wasting problem.
Whenever I am trying to build my project in iOS device it gives me…

AG.29
- 230
- 1
- 20
0
votes
1 answer
Carthage build failed .(For two Xcode)
Currently I have two Xcode version 10.2 and 11.1.
One Carthage update, build is failing with following error.
I have checked Carthage logged . It is showing following error.
I have tried different commands as follows
carthage update --platform…

ketaki Damale
- 634
- 7
- 25
0
votes
0 answers
Command PhaseScriptExecution failed with a nonzero exit code error in Xcode 10.2 while archiving
My app is working fine in the simulator as well as in Device, but when I try to Archive it, it gives me the below error…

iDeveloper
- 940
- 1
- 10
- 45
0
votes
0 answers
Invalid Bundle Error When App Store Connect Processes Build
I'm getting the following error after my app has processed in AppStore Connect.
"ITMS-90562: Invalid Bundle - The app submission can not be successfully recompiled from bitcode due to missing symbols during linking. You can try to reproduce and…

Michael Luton
- 1,058
- 11
- 29
0
votes
1 answer
How to get local notification at two different timings daily?
I want my app to send Local Notification at 7AM and 7PM daily. How to do that? please help
I need to send two local notification daily one at 7AM and another at 7PM.
{
- (BOOL)application:(UIApplication *)application…

IOS trainee
- 13
- 3
0
votes
1 answer
UITextField showing multiline text in Objective C iOS , Xcode 10.2, iOS 13
i am assigning URL to textfield but it showing in multi line. But when i assign simple text work fine.
Here is the code.
_searchTF.text = @"asdfasdfaa asdfas asdfasdfasfasdf"; it work fine.
_searchTF.text =…

Shahbaz Akram
- 1,598
- 3
- 28
- 45
0
votes
1 answer
Flurry: Session doesn't track on IOS using ionic3
I have flurry-analytics in integrated in ionic3 project although its
working perfectly in android but in IOS it doesn't track
sessions.
Ionic:
Ionic CLI : 5.2.3 (/usr/local/lib/node_modules/ionic)
Ionic Framework :…

Wasim
- 99
- 11
0
votes
2 answers
Migrating to Xcode 10.2
I have my iOS project which builds successfully in Xcode 10 but when I tried to upload the application on test flight I am not able to upload. It gives an error -
From March 2019 onwards AppStore connect will only accept builds from
Xcode 10.1…

USER9561
- 1,084
- 3
- 15
- 41
0
votes
0 answers
iOS using protocols and closing modally presented view controller
I have Navigation controller and a ViewController. let's call it MainVC. Now I am opening some ViewControllers in following way
MainVC --(Modally presented)---> VC1 ---(Modally presents)->>VC2
Now VC2 gets some data and throws it data in below…

A.s.ALI
- 1,992
- 3
- 22
- 54
0
votes
1 answer
TabBar overlay on view - IOS
I shift my TabBar to top like bellow:
class RootMainFatherTabBarUITabBarController: UITabBarController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewWillLayoutSubviews() {
//Shift tabs to top…

jo jo
- 1,758
- 3
- 20
- 34
0
votes
1 answer
Xcode simulator Version 10.2 is booting first time extremely slow
I am having problem with my Xcode simulator. Its booting up extremely slow. It tooks almost half an hour or more than that sometimes. I don't know whats the reason.
This is the system info -
Xcode version - Version 10.2 (10E125)
Xcode simulator -…

Tejas Ratunawar
- 93
- 13
0
votes
1 answer
Archive Failed In Jenkins with xcode 10.2
I am trying to build an .ipa from jenkins with freestyle project. I am using xcode10.2 and jenkins ver 2.164.1.
But I faced the following issue.
The following build commands failed:
CompileSwift normal arm64
CompileSwiftSources normal arm64…

Jenish
- 477
- 5
- 20
0
votes
0 answers
I want to upload image to server connect with soap using SWIFT
I want to upload the image to server connect with SOAP using SWIFT
but I have to respond value from soap below
Response: Optional( { URL: http://xxx.xx.xx.xx/Projectervice/imageService.asmx?op=Upload } { Status…
user9378998