Search results for

“xcode github”

96,040 results found

Post

Replies

Boosts

Views

Activity

WWDC App Doesn't allow login with 2 Step Code on iPhone X
I was just testing out the WWDC app ability to add a passcode for the WWDC ticket to the iPhone on my iPhone X.But I noticed the page to request a 2 step token has the wrong top margins, so once you get to that screen you cannot continue or cancel.Raised bug radar https://bugreport.apple.com/web/?problemID=38898852.Given WWDC tickets are now announced, and this version of the App is meant to be compatible with iPhone X, then I thought I'd raise it here so it doesn't slip through the gaps.Looking forward to it this year, see you there.
0
0
788
Apr ’18
New playback error on iOS/tvOS 18.x "CoreMediaErrorDomain Code=-15486"
Hello, Our users have started to see a new fatal AVPlayer error during playback starting with iOS/tvOS 18.0. The error is defined as CoreMediaErrorDomain Code=-15486. We have not been able to reproduce this issue locally within our development team. Is there any documentation on the cause of this error or steps to recover from this error? Thank you, Howard
0
0
770
Feb ’25
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
120
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
855
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 Xcode 12 - Segmentation Fault 11 - SegFault
Did you first try the usual option-clean build folder ? Could it be a problem similar to this one https ://github .com/xmartlabs/Eureka/issues/2057 where self in some extension or some code was confusing the compiler ? See also detail https ://github .com/xmartlabs/Eureka/pull/2061
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’20
WWDC App Doesn't allow login with 2 Step Code on iPhone X
I was just testing out the WWDC app ability to add a passcode for the WWDC ticket to the iPhone on my iPhone X.But I noticed the page to request a 2 step token has the wrong top margins, so once you get to that screen you cannot continue or cancel.Raised bug radar https://bugreport.apple.com/web/?problemID=38898852.Given WWDC tickets are now announced, and this version of the App is meant to be compatible with iPhone X, then I thought I'd raise it here so it doesn't slip through the gaps.Looking forward to it this year, see you there.
Replies
0
Boosts
0
Views
788
Activity
Apr ’18
New playback error on iOS/tvOS 18.x "CoreMediaErrorDomain Code=-15486"
Hello, Our users have started to see a new fatal AVPlayer error during playback starting with iOS/tvOS 18.0. The error is defined as CoreMediaErrorDomain Code=-15486. We have not been able to reproduce this issue locally within our development team. Is there any documentation on the cause of this error or steps to recover from this error? Thank you, Howard
Replies
0
Boosts
0
Views
770
Activity
Feb ’25
Reply to Xcode Previews broken after setting different bundle identifier for debug/release modes
Try Clean Build. Restart x-code This resolved for me the issue :)
Replies
Boosts
Views
Activity
Aug ’24
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
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
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
120
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
855
Activity
Jun ’24
Reply to Changing Icons
There is a Swift sample on GitHub -> https://github.com/juliengdt/DynamicIcon
Replies
Boosts
Views
Activity
Apr ’17
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 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 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 Share arbitrary struct from HostApp to Extension and get arbitrary result back
Here is the github project: https://github.com/Fesh-com/Sharing-Extension
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to iOS App never gets Bluetooth connection
I have posted a skeleton project on Github https://github.com/andrewknockin/BleTest
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’26
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