Hi,With the latest XCode 10.2, git support seems to always break after some time, forcing me to close xcode, and open it again to have it work correclty again.When git access is needed, in my local repository (to compare changes or commit) the following message pops-up:----Couldn’t communicate with a helper application.Try your operation again. If that fails, quit and relaunch the application and try again.----I had no problems with git with previous versions of XCode.Any one else having the problem and any clues on how to workaroud it ?
Post not yet marked as solved
Hi,
In my app, I allow the user to select user installed fonts, thanks to the UIFontPickerViewController picker.
I have set the "Use Installed Fonts" privilege in the app's entitlements.
The user font is correctly displayed in my app, when creating a UIFont.
In my Widget Extension (for the Home screen), the Font is not recognised and return a default font.
Also, in my Today Extension (for the Notification Center), the UIFont cannot be created and return nil.
I believe this is because there is no possibility to set the "Use Installed Fonts" privilege in the entitlements of the extensions (both Today and Widget).
Does anyone have some information about that ?
Hi,Since the last few days, after the installation of the latest XCode 11 (GM1, GM2, appstore), I have big problems with icloud drive syncing my projects that contains a git directory.From times to times (i believe, after I change the sources, or commit a task) iCloud forces a complete upload/dowloads of all my sources (even the ones outside the folder of my project) and that takes forever / slows my internet connection.Also, this sync messes up my git :The invisible ".git" folder (that xcode creates inside my project directory) , is automatically renamed by iCloud to a "git 2" file that is not a real folder anymore.Am a the only one this this very annoying problem and is there something to fix it ?Until then it was perfectly possible to have a git source control (proposed by XCode) coexist with icloud drive backup.
Post not yet marked as solved
Hi,I have a crash performing UITests in an app that displays a UIPickerView.This crash happens with the latest Xcode (Version 9.2 (9C40b)).I use the iPhone X 11.2 simulator (but that also happen on my iPhone 6 device or with other simulators)I've isolated the problem in a sample project that can be downloaded here:https://www.dropbox.com/s/y7blmt3mgtrhi1a/PickerTest.zip?dl=0This simple app only adds a UIPickerView as a subview.The UITests only waits for some predicates to complete (without any actions).The EXC_BAD_ACCESS appears (after a few seconds) when the app is launched by the UITests.I've added 3 constants in the ViewController.h file :#define NUMBER_OF_EXPECTATIONS 10#define NUMBER_OF_PICKER_ROWS 300#define NUMBER_OF_PICKER_COMPONENTS 20According to my tests the crash will appear at a later time (not as soon) if some of those constants are lower.Does anyone also have this problem ?Am I doing something wrong, or is it an xcode bug ?In that case, has anyone got a workaround ?Thank you 🙂