Search results for

“xcode github”

95,458 results found

Post

Replies

Boosts

Views

Activity

Reply to Xcode cloud does not detect branches other than develop
I encountered this issue as well. The fix, in my case: I set up the Workflow, but I was not the owner of the GitHub repo. An email was sent to the owner, requesting them to grant access to the applicable repos set during the Workflow setup. After the owner granted access, I had to right-click the Workflow in Xcode, click Manage Repositories, then in App Store Connect click Grant
Aug ’22
New build of iOS app releasing by X-Code give two errors
Dear users,good morning. I have already putted my iPhone app in App Store, and it is already approved and in sale.Now, I have done a little change (the text of two message box and the correct color / alignement of one label; nothing else). This is only a build, not a new version, so I would avoid the long approval process, and I would update this new version only as a new build.I have tried to upload it with the same procedure (in the same conditions!) which I have already followed during my first upload of my first main version; but, incredibly, it doesn't work; and I see the error message which you can see in the screenshot which I have putted in my dropbox account and which you can see by the following link.Why happend? How can I fix it? Thank in advance!https://www.dropbox.com/s/p37pt4wxhwx7sz1/sc-10.png?dl=0
0
0
112
Jul ’15
TextField("x", value: $y, format: .currency(code: "USD")) Behaves oddly
Hello, If we have the following code: import SwiftUI struct ContentView: View { @State private var usdAmount = 0.0 var body: some View { VStack { Text(Currency Form) Form { TextField(Dollar Amount, value: $usdAmount, format: .currency(code: USD)) // 1 // TextField(Dollar Amount, value: $usdAmount, format: .number) // 2 .keyboardType(.numberPad) } Text(usdAmount = (usdAmount)) } .padding() } } When the line marked // 1 is left uncommented (the TF has a .currency() formatter applied) the behaviour of the TF is rather odd. Upon display it shows US$0.00 Upon editing the value the US$ part remains. So if the user enters US$123 the value is not stored into the usdAmount property. The User must delete all the existing text and enter e.g. 456.78 and then the value is stored to the usdAmount property. When Line //1 is commented-out and line //2 is uncommented then the TF behaves correctly because the TF value is just 0 on first display. Should we not use the .currency() format? Or am I using it wrong? Thanks.
Topic: UI Frameworks SubTopic: SwiftUI
2
0
845
Jun ’24
Reply to Unable to use Xcode Cloud - "does not have a remote repository"
Hi, Since you're using a self-hosted SCM instance, the issue may be with Xcode Cloud connecting to it. You can check out Xcode Cloud's source control requirements here but this is the relevant part: If you use an IP allow list either on a self-hosted or cloud SCM provider — such as Bitbucket Server or GitHub Enterprise — make sure Xcode Cloud has access to your Git server. Check your firewall’s inbound HTTPS allow list and grant Xcode Cloud access to your Git server by adding the IP address ranges 17.58.0.0/18, 17.58.192.0/18, and 57.103.0.0/22.
Jan ’25
Reply to High Sierra > NSTableView > HeaderCell: new height is an issue
o I'm using Xcode 6 on OS X 10.10 to build the application. You can not select the Header View with this version.o I'm not sure code for UIKit is going to be helpful for an AppKit issue.o I'm not using Auto-layout.I will check how this looks like on Sea-Level Sierra. Yes, if this change is to stay, I will have to dynamically change the height of the NSTableView.
Topic: UI Frameworks SubTopic: AppKit Tags:
Jul ’17
Reply to Crash on Capture GPU Frame, XCode 7, Beta 4
The forums are responding with a cryptic error message when I try to post my logs (apple.discussions.antispam.content.message) but here is some of it... I can post more if necessary.Process: Xcode [684]Path: /Applications/Xcode-beta.app/Contents/MacOS/XcodeIdentifier: com.apple.dt.XcodeVersion: 7.0 (8178.7)Build Info: IDEFrameworks-8178007000000000~3Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: Xcode [684]User ID: 501Date/Time: 2015-07-22 20:25:46.435 -0700OS Version: Mac OS X 10.11 (15A178w)Report Version: 11Anonymous UUID: 20CCF449-BA72-984D-4556-DA8E8F4309E4Time Awake Since Boot: 950 secondsCrashed Thread: 24 Dispatch queue: gputools.GPUiOSInferiorSession.0x7fa831a6b960Exception Type: EXC_BAD_ACCESS (SIGSEGV)Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018Exception Note: EXC_CORPSE_NOTIFYVM Regions Near 0x18:--> __TEXT 000000010495b000-000000010495c000 [ 4K] r-x/rwx SM=COW /Applications/Xcode-beta.app/Contents/MacO
Topic: Graphics & Games SubTopic: General Tags:
Jul ’15
Reply to M_PI unresolved?? (iOS-only)
I can confirm this code works without error using Xcode 7.3.1 (7D1014), sam as yours, but under OS X 10.11.5. I'm not using the beta, so it seems they maybe did change something there. I assume you have tried the usual stuff since upgrading -- delete Derived Data folder, run the Option-Product>Clean Build Folder command, reboot? Or, it may be a phantom error caused in some surrounding code. I sometimes get these especially if I have mismatched braces or parentheses somewhere.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’16
Reply to Weird SIGTRAP during tableView scroll
When attempting to interpret crash reports, it can be helpful to remember they simply point to where the error occured, not the root cause.In your example, SIGTRAP is not the error, it is the exception. It doesn't show the origin of the crash. You might need to set break points, walking thru the UI/code so see if you can better id root cause related code block(s).In the mean time, does your app only support iOS 13.x? Which version Xcode are you using?
Topic: UI Frameworks SubTopic: UIKit Tags:
Oct ’19
Reply to Run macOS application in Github Actions
Wrong forum, please reach out to github support.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to How to submit Mac OS Input Method app to AppStore
You may want to distribute your framework via github, instead.
Replies
Boosts
Views
Activity
Mar ’16
Reply to AUMIDISynth - Anybody know how to load instruments into it?
Yes. Try this article which also has a working Github project.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jul ’16
Reply to Xcode cloud does not detect branches other than develop
I encountered this issue as well. The fix, in my case: I set up the Workflow, but I was not the owner of the GitHub repo. An email was sent to the owner, requesting them to grant access to the applicable repos set during the Workflow setup. After the owner granted access, I had to right-click the Workflow in Xcode, click Manage Repositories, then in App Store Connect click Grant
Replies
Boosts
Views
Activity
Aug ’22
New build of iOS app releasing by X-Code give two errors
Dear users,good morning. I have already putted my iPhone app in App Store, and it is already approved and in sale.Now, I have done a little change (the text of two message box and the correct color / alignement of one label; nothing else). This is only a build, not a new version, so I would avoid the long approval process, and I would update this new version only as a new build.I have tried to upload it with the same procedure (in the same conditions!) which I have already followed during my first upload of my first main version; but, incredibly, it doesn't work; and I see the error message which you can see in the screenshot which I have putted in my dropbox account and which you can see by the following link.Why happend? How can I fix it? Thank in advance!https://www.dropbox.com/s/p37pt4wxhwx7sz1/sc-10.png?dl=0
Replies
0
Boosts
0
Views
112
Activity
Jul ’15
TextField("x", value: $y, format: .currency(code: "USD")) Behaves oddly
Hello, If we have the following code: import SwiftUI struct ContentView: View { @State private var usdAmount = 0.0 var body: some View { VStack { Text(Currency Form) Form { TextField(Dollar Amount, value: $usdAmount, format: .currency(code: USD)) // 1 // TextField(Dollar Amount, value: $usdAmount, format: .number) // 2 .keyboardType(.numberPad) } Text(usdAmount = (usdAmount)) } .padding() } } When the line marked // 1 is left uncommented (the TF has a .currency() formatter applied) the behaviour of the TF is rather odd. Upon display it shows US$0.00 Upon editing the value the US$ part remains. So if the user enters US$123 the value is not stored into the usdAmount property. The User must delete all the existing text and enter e.g. 456.78 and then the value is stored to the usdAmount property. When Line //1 is commented-out and line //2 is uncommented then the TF behaves correctly because the TF value is just 0 on first display. Should we not use the .currency() format? Or am I using it wrong? Thanks.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
2
Boosts
0
Views
845
Activity
Jun ’24
Reply to "No such module"
On their github page, the developers for this framework suggest Stack Overflow. I would start there.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Nov ’15
Reply to On first click the share sheet shows nothing
I did what you said ! The github project folder is to reproduce the bug. You can not See it !
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’21
Reply to Command-line tool for .ips files?
@hecht Would you mind posting it as a Github Gist? https://gist.github.com/
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’22
Reply to Unable to use Xcode Cloud - "does not have a remote repository"
Hi, Since you're using a self-hosted SCM instance, the issue may be with Xcode Cloud connecting to it. You can check out Xcode Cloud's source control requirements here but this is the relevant part: If you use an IP allow list either on a self-hosted or cloud SCM provider — such as Bitbucket Server or GitHub Enterprise — make sure Xcode Cloud has access to your Git server. Check your firewall’s inbound HTTPS allow list and grant Xcode Cloud access to your Git server by adding the IP address ranges 17.58.0.0/18, 17.58.192.0/18, and 57.103.0.0/22.
Replies
Boosts
Views
Activity
Jan ’25
Reply to High Sierra > NSTableView > HeaderCell: new height is an issue
o I'm using Xcode 6 on OS X 10.10 to build the application. You can not select the Header View with this version.o I'm not sure code for UIKit is going to be helpful for an AppKit issue.o I'm not using Auto-layout.I will check how this looks like on Sea-Level Sierra. Yes, if this change is to stay, I will have to dynamically change the height of the NSTableView.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Jul ’17
Reply to Low latency host code for AU v3 (remoteIO)?
Search on github dot com for hotpaw2. I have a short Github Gist posted there in Swift 3 for an Audio Unit v3 host for the iOS RemoteIO Audio Unit. Seems to permit extremely low latencies (callback buffers even shorter than 256 samples) on an iPhone 6s or 7.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Oct ’16
Reply to Crash on Capture GPU Frame, XCode 7, Beta 4
The forums are responding with a cryptic error message when I try to post my logs (apple.discussions.antispam.content.message) but here is some of it... I can post more if necessary.Process: Xcode [684]Path: /Applications/Xcode-beta.app/Contents/MacOS/XcodeIdentifier: com.apple.dt.XcodeVersion: 7.0 (8178.7)Build Info: IDEFrameworks-8178007000000000~3Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: Xcode [684]User ID: 501Date/Time: 2015-07-22 20:25:46.435 -0700OS Version: Mac OS X 10.11 (15A178w)Report Version: 11Anonymous UUID: 20CCF449-BA72-984D-4556-DA8E8F4309E4Time Awake Since Boot: 950 secondsCrashed Thread: 24 Dispatch queue: gputools.GPUiOSInferiorSession.0x7fa831a6b960Exception Type: EXC_BAD_ACCESS (SIGSEGV)Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018Exception Note: EXC_CORPSE_NOTIFYVM Regions Near 0x18:--> __TEXT 000000010495b000-000000010495c000 [ 4K] r-x/rwx SM=COW /Applications/Xcode-beta.app/Contents/MacO
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’15
Reply to M_PI unresolved?? (iOS-only)
I can confirm this code works without error using Xcode 7.3.1 (7D1014), sam as yours, but under OS X 10.11.5. I'm not using the beta, so it seems they maybe did change something there. I assume you have tried the usual stuff since upgrading -- delete Derived Data folder, run the Option-Product>Clean Build Folder command, reboot? Or, it may be a phantom error caused in some surrounding code. I sometimes get these especially if I have mismatched braces or parentheses somewhere.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’16
Reply to Weird SIGTRAP during tableView scroll
When attempting to interpret crash reports, it can be helpful to remember they simply point to where the error occured, not the root cause.In your example, SIGTRAP is not the error, it is the exception. It doesn't show the origin of the crash. You might need to set break points, walking thru the UI/code so see if you can better id root cause related code block(s).In the mean time, does your app only support iOS 13.x? Which version Xcode are you using?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Oct ’19