Search results for

“xcode github”

96,040 results found

Post

Replies

Boosts

Views

Activity

Reply to Simpler hierarchy for capturing body motion in 3D
Hi to all! I have a problem: I run the code as it comes from the zip file, Xcode makes the built, no error, and sends the app to my iphone. The problem is that nothing appears in the Ar view, I can't see the robot.usdz, inside the appledeveloper code. I'm using iPhone 12 pro, iOs 15 beta 3 and X code 13 beta. I've updated everything, so that may be the problem? Is lidar on as default? I don't see any code about lidar inside the code from the zip. Why doesn't the robot even appear to me? Apologise for all that question maybe almost off topic, but the situation It's really frustrating, so any help is very appreciated :)
Topic: Spatial Computing SubTopic: ARKit Tags:
Jul ’21
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 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 error: invalid target, create a target using the 'target create' command
Very deep cleaning (rm derived data, caches, ++) fixes the missing BackgroundTask console output. So whats left is that Xcode 13 LLDB does not print objects in most places of out code. Reproducible for the complete team. error: invalid target, create a target using the 'target create' command // ... (lldb) po someObject error: :3:1: error: cannot find 'someObject' in scope While Xcode 12.x works as expected. Due to the fact the internet did not explode yet, I assume this is not a general Xcode issue but something related to our Xcode Project. Any hint highly appreciated o/
Jan ’22
Getting crash when using notarytool on Github hosted osx build agents
When I run notarytool submit in my github workflow, I get what appears to be some kind of segmentation fault. Here's a direct link to the exception output: https://github.com/recyclarr/recyclarr/actions/runs/6594346352/job/17918152266#step:6:43 My project is open source, so you can also view the shell script I use in the workflow itself: https://github.com/recyclarr/recyclarr/blob/update-notary-tool/ci/notarize.sh The script above contains this: #!/usr/bin/env bash set -xe user=$1 pass=$2 teamId=$3 archivePath=$4 function submit() { xcrun notarytool submit --wait --apple-id $user --password $pass --team-id $teamId recyclarr.zip | awk '/id: / { print $2;exit; }' } function log() { xcrun notarytool log --apple-id $user --password $pass --team-id $teamId $1 } tar -cvf recyclarr.tar $archivePath zip recyclarr.zip recyclarr.tar submissionId=$(submit) rm recyclarr.zip recyclarr.tar if [[ -z $submissionId ]]; then exit 1 fi echo Submission ID: $submissionId until log $submissionId do sleep 2 done T
1
0
784
Oct ’23
Reply to Transparent Proxy seems to break Mail.app on Big Sur
Greetings, @meaton! I've put the code on github: https://github.com/ngorskikh/transparentproxyrepro I've updated the feedback, too, but it looks like attachments don't work for some reason -- or at least I can't see my own attachments, even though the original feedback request contained some automatically collected logs, as well as a zip with an xcode project and a couple of screenshots. Kind regards, ngorskikh.
Sep ’20
Reply to Swift - Insert [AnyObject] into [NSMutableDictionnary]
This code: dataArray = [[jobs: ctlelems[x], unload: 0]];is replacing the whole content of dataArray with the single element array. It does not work as Insert.To append an element to Array: dataArray += [[jobs: ctlelems[x], unload: 0]]or dataArray.append([jobs: ctlelems[x], unload: 0])Found nil is another problem. You use too much unwrapping operators (!), without checking the optional value is nil or not.Put nil checking code before using !.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’15
Reply to Error Simulator Download Simulator IOS 18.2 22C5142a
I have a similar error with Xcode build 16C5032a. Download fails for iOS Simulator 18.0/18.1/18.2/18.3.1, while it is successful for 17.x Download failed. Domain: DVTDownloadableErrorDomain Code: 41 User Info: { DVTErrorCreationDateKey = 2025-02-26 09:58:16 +0000; } -- Download failed. Domain: DVTDownloadableErrorDomain Code: 41 -- Failed fetching catalog for assetType (com.apple.MobileAsset.iOSSimulatorRuntime), serverParameters ({ RequestedBuild = 22D8075; }) Domain: DVTDownloadsUtilitiesErrorDomain Code: -1 -- Download failed due to a bad URL. (Catalog download for com.apple.MobileAsset.iOSSimulatorRuntime) Domain: com.apple.MobileAssetError.Download Code: 49 User Info: { checkConfiguration = 1; } -- System Information macOS Version 15.3.1 (Build 24D70) Xcode 16.2 (23507) (Build 16C5032a) Timestamp: 2025-02-26T13:58:16+04:00
Feb ’25
Reply to Simpler hierarchy for capturing body motion in 3D
Hi to all! I have a problem: I run the code as it comes from the zip file, Xcode makes the built, no error, and sends the app to my iphone. The problem is that nothing appears in the Ar view, I can't see the robot.usdz, inside the appledeveloper code. I'm using iPhone 12 pro, iOs 15 beta 3 and X code 13 beta. I've updated everything, so that may be the problem? Is lidar on as default? I don't see any code about lidar inside the code from the zip. Why doesn't the robot even appear to me? Apologise for all that question maybe almost off topic, but the situation It's really frustrating, so any help is very appreciated :)
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Jul ’21
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
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 error: invalid target, create a target using the 'target create' command
Very deep cleaning (rm derived data, caches, ++) fixes the missing BackgroundTask console output. So whats left is that Xcode 13 LLDB does not print objects in most places of out code. Reproducible for the complete team. error: invalid target, create a target using the 'target create' command // ... (lldb) po someObject error: :3:1: error: cannot find 'someObject' in scope While Xcode 12.x works as expected. Due to the fact the internet did not explode yet, I assume this is not a general Xcode issue but something related to our Xcode Project. Any hint highly appreciated o/
Replies
Boosts
Views
Activity
Jan ’22
Getting crash when using notarytool on Github hosted osx build agents
When I run notarytool submit in my github workflow, I get what appears to be some kind of segmentation fault. Here's a direct link to the exception output: https://github.com/recyclarr/recyclarr/actions/runs/6594346352/job/17918152266#step:6:43 My project is open source, so you can also view the shell script I use in the workflow itself: https://github.com/recyclarr/recyclarr/blob/update-notary-tool/ci/notarize.sh The script above contains this: #!/usr/bin/env bash set -xe user=$1 pass=$2 teamId=$3 archivePath=$4 function submit() { xcrun notarytool submit --wait --apple-id $user --password $pass --team-id $teamId recyclarr.zip | awk '/id: / { print $2;exit; }' } function log() { xcrun notarytool log --apple-id $user --password $pass --team-id $teamId $1 } tar -cvf recyclarr.tar $archivePath zip recyclarr.zip recyclarr.tar submissionId=$(submit) rm recyclarr.zip recyclarr.tar if [[ -z $submissionId ]]; then exit 1 fi echo Submission ID: $submissionId until log $submissionId do sleep 2 done T
Replies
1
Boosts
0
Views
784
Activity
Oct ’23
Reply to Transparent Proxy seems to break Mail.app on Big Sur
Greetings, @meaton! I've put the code on github: https://github.com/ngorskikh/transparentproxyrepro I've updated the feedback, too, but it looks like attachments don't work for some reason -- or at least I can't see my own attachments, even though the original feedback request contained some automatically collected logs, as well as a zip with an xcode project and a couple of screenshots. Kind regards, ngorskikh.
Replies
Boosts
Views
Activity
Sep ’20
Reply to nw_protocol_get_quic_image_block_invoke dlopen libquic failed
I have same issue, my app was working on iOS 13.7 from Xcode 11.7. It's not working with iOS 14.x upgrade I tried all the scenarios mentioned here and other forums, so far no luck. Looks like it's wierd new issue, I could not find more info on the issue any where. In my case the code failed, when popuating data the tableview.
Replies
Boosts
Views
Activity
Dec ’20
Reply to Tunnelling VPN traffic through a local proxy server with NEPacketTunnelProvider
Could you please be more precise about the Github repository you used? Thank you in advance.
Replies
Boosts
Views
Activity
Apr ’23
Reply to Swift - Insert [AnyObject] into [NSMutableDictionnary]
This code: dataArray = [[jobs: ctlelems[x], unload: 0]];is replacing the whole content of dataArray with the single element array. It does not work as Insert.To append an element to Array: dataArray += [[jobs: ctlelems[x], unload: 0]]or dataArray.append([jobs: ctlelems[x], unload: 0])Found nil is another problem. You use too much unwrapping operators (!), without checking the optional value is nil or not.Put nil checking code before using !.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’15
Reply to Error Simulator Download Simulator IOS 18.2 22C5142a
I have a similar error with Xcode build 16C5032a. Download fails for iOS Simulator 18.0/18.1/18.2/18.3.1, while it is successful for 17.x Download failed. Domain: DVTDownloadableErrorDomain Code: 41 User Info: { DVTErrorCreationDateKey = 2025-02-26 09:58:16 +0000; } -- Download failed. Domain: DVTDownloadableErrorDomain Code: 41 -- Failed fetching catalog for assetType (com.apple.MobileAsset.iOSSimulatorRuntime), serverParameters ({ RequestedBuild = 22D8075; }) Domain: DVTDownloadsUtilitiesErrorDomain Code: -1 -- Download failed due to a bad URL. (Catalog download for com.apple.MobileAsset.iOSSimulatorRuntime) Domain: com.apple.MobileAssetError.Download Code: 49 User Info: { checkConfiguration = 1; } -- System Information macOS Version 15.3.1 (Build 24D70) Xcode 16.2 (23507) (Build 16C5032a) Timestamp: 2025-02-26T13:58:16+04:00
Replies
Boosts
Views
Activity
Feb ’25
Reply to Swift 2.3 - What will be the date of your death?
I think if you have time, upgrade your code base to swift 3.x ASAP
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’17
Reply to MacOS X application codesign gets failed if it has symlink folders
Looks like a duplicate of MacOS X application code sign issue
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Feb ’19