Search results for

“xcode github”

96,031 results found

Post

Replies

Boosts

Views

Activity

Reply to [macOS 26.4.x, iOS 26.4.x] Handoff broken?
I see this: default 15:14:10.967991+0200 sharingd Received Handoff payload reply from via Rapport () with requestIdentifier , xid default 15:14:10.968033+0200 sharingd Received requested Handoff payload via from () for with activity payload of size for requestIdentifier (). RTT: default 15:14:10.970822+0200 sharingd DeviceDiscoveryUpdate: SFDeviceDiscovery (CLink), 0x1 < Info >, cflags 0x21 < AdvData >, ScanRate Invalid, ScreenOff, RSSI Change Detection, RSSI >= -80 info 15:14:10.972649+0200 sharingd NearbyInfo sending activity level, original: 0xb encrypted:0x2 info 15:14:10.972951+0200 sharingd [NearbyAction] Scan restart skipped when unchanged info 15:14:10.972982+0200 sharingd [NearbyInfo] Scan restart skipped when unchanged info 15:14:10.973205+0200 sharingd [Prox] Scan restart skipped when unchanged default 15:14:11.011373+0200 sharingd Streams are being requested from service = default 15:14:11.011430+0200 sharingd Streams are being requested for bonjour name = info 15:14:11.011
Topic: App & System Services SubTopic: General Tags:
1w
TLS Inspection with MITM Proxy setup for System Extension app in macOS
Hi All, I am working on a macOS System Extension using Apple’s Network Extension Framework, designed to observe and log network activity at multiple layers. The system extension is currently stable and working as expected for HTTP and DNS traffic with 3 providers, getting Socket, HTTP, and DNS logs. Current Architecture Overview The project consists of two Xcode targets: 1. Main App Process Responsible for: Managing system extension lifecycle (activation, configuration) Establishing IPC (XPC) communication with extensions Receiving structured logs from extensions Writing logs efficiently to disk using a persistent file handle Uses: OSSystemExtensionManager NEFilterManager, NETransparentProxyManager, NEDNSProxyManager NWPathMonitor for network availability handling Persistent logging mechanism (FileHandle) 2. System Extension Process Contains three providers, all running within a single system extension process: a) Content Filter (NEFilterDataProvider) Captures socket-level metadata Extracts: PID via
5
0
264
1w
iOS app shows black screen on TestFlight launch - no crash logs (Flutter, iOS 26)
Hello, I'm experiencing a critical issue with my Flutter iOS app on TestFlight where the app shows a completely black screen immediately after launch. The app does NOT crash (no .ips logs in iOS Settings → Analytics & Improvements), but Flutter Engine appears not to start at all. The same code runs perfectly on Android. PROJECT INFO: App Name: CNC AI Assistant Bundle ID: com.beratech.cncassistant Team ID: 958PPWZD27 Provisioning Profile UUID: 8122ca65-b15f-4daa-b0d2-1da5409c6859 Build CI: Codemagic Flutter Version: 3.41.5 iOS Deployment Target: 14.0 Test Device: iPad15,3 running iOS 26.x ISSUE BEHAVIOR: Build succeeds on Codemagic without errors IPA is signed with valid distribution certificate TestFlight processes and accepts the build Tester downloads/updates from TestFlight successfully App opens → completely BLACK SCREEN immediately LaunchScreen.storyboard does not appear App does not auto-close (must be manually killed) NO crash logs generated in iOS Settings Same exact codebase wor
2
0
132
1w
`URLSessionConfiguration.connectionProxyDictionary` Fails to Disable HTTP(s) Proxy on iOS 26.x
Our business interface requests require disabling HTTP(s) proxies. We configured URLSessionConfiguration.connectionProxyDictionary as before, but found that it does not work on iOS 26 1.Core code: let configuration = URLSessionConfiguration.default configuration.connectionProxyDictionary = [ HTTPEnable: false, HTTPSEnable: false, SOCKSEnable: false, ] let session = URLSession(configuration: configuration) let request = URLRequest(url: URL(string: https://www.baidu.com)!,timeoutInterval: Double.infinity) // 发送请求 let task = session.dataTask(with: request) { data, response, error in if let error = error { print(网络请求失败: (error)) } if let data = data { print(网络请求成功,返回数据长度: (data.count)) if let responseString = String(data: data, encoding: .utf8) { print(返回数据: (responseString.prefix(100))...) } } } task.resume() 2.Specific steps: We captured traffic using Proxyman and Charles. With the same code, requests cannot be captured on iOS 18 and iOS 16.1, but can be captured on iOS 26.2 and 26.1. Conclusi
4
0
266
1w
Misleading error on ForEach
During refactoring of an app I made a typo which leads to a misleading error message in Xcode 26.4. I could reproduce it with a small sample code in Swift Playground. Is it a bug which should be reported? Details: I have an array containing two strings. Using a ForEach loop is fine: ForEach(appData.dataArray, id: .self) { value in Text((value.subject)t(value.room)) } but with a typo in the Text line I got an error on the ForEach line: ForEach(appData.dataArray, id: .self) { value in --> Cannot convert value of type '[MyArray]' to expected argument type 'Binding' Text((value.subject)t(value.subject.room)) } Complete sample code from Swift Playground (macOS 26): import SwiftUI class MyArray : Hashable, Equatable, Identifiable, ObservableObject, Codable { let id = UUID() @Published var subject: String @Published var room : String private enum CodingKeys : String, CodingKey { case subject case room } init(subject : String, room : String) { self.subject = subject self.room = room } func encode(to encod
2
0
1.3k
1w
Reply to TLS Inspection with MITM Proxy setup for System Extension app in macOS
Thanks again for your clarifications @DTS Engineer! Here is the flow I am thinking to follow with my existing app so far: Network Traffic │ NETransparentProxyProvider │ ├─ Detect Protocol (first bytes) │ ├─ HTTP ─────> HTTPFlowLogger (existing) │ └─-------- HTTPS │ TLS Interceptor (NEW) │ ┌─────---───────────────┐ │ │ Client TLS Server TLS (terminate) (re-initiate) │ │ └──── Decrypted Bytes ─----┘ │ HTTPFlowLogger (reuse) To start with, I am thinking of something basic: Supporting all HTTP/1.1 traffic so that I can reuse my existing HTTP parser. Is it possible to downgrade(at least a part of) HTTPS traffic without loosing anything while doing so? What can I expect in terms of complexity and performance here? Now, As you've mentioned: Keep in mind that the world has moved on from HTTP/1. A good TLS inspection product should support HTTP/2 + TLS + TCP and HTTP/3 + QUIC + DTLS + UDP To support at least HTTP/2 + TLS + TCP(as I think most of the traffic these days), What's the best approach in this scenario? On
1w
Reply to SwiftUI Text rendering with too small height / one line missing causing unexpected text truncation on iPhone devices
The first sample didn't reproduce on the simulator or device without an accessibility override, which I had active on my device, but forgot. The second sample always reproduces on an iPhone 15 device / sim with affected iOS. Did you test also with this second sample or only the sample code from the initial post? For an iPhone 15 sim the following OS give these results: 17.5 works 18.6 truncates 26.4 truncates 26.5 truncates So it's likely an iOS 18.x regression. To pinpoint this more it would be necessary to download more iOS 18 SDKs. Regarding devices it seems to need a device with 2556x1179 resolution. So an iPhone 16 also reproduces this issue. struct ContentView: View { var body: some View { Text(txt) .dynamicTypeSize(.medium) .fixedSize(horizontal: false, vertical: true) .padding(.horizontal, 20) .frame(maxHeight: .infinity) } } Whether you wrap that ContentView in a ScrollView or not doesn't affect the truncation in my tests. In our main app this is part of an UICollectionView so also
Topic: UI Frameworks SubTopic: SwiftUI Tags:
1w
Reply to PHPhotosErrorDomain Code: 3302 started affecting my users recently.
Hi, as I mentioned I'm not able to reproduce it locally, I tried on all my available devices. so I don't have any error logs. I have NSPhotoLibraryAddUsageDescription and I reuse the same code in 3 of my production app that are on the marked for 9 and 10 years I never had those complaints until last month. My app also supports accessing user content (videos from Photos or Documents) they can load videos and reference them side-by-side with the recorded content. But it seems like a bug to me on the new version? I don't see anything that I changed. 2. It affects maybe 1% of users, and it works fine for 99% of users just fine. 3. In the analytics it appears there are no users affected by those error with Full Photos access, but I added those analytics just a couple days ago, before I wasn't tracking those errors. 4. I think I should be able to reproduce the error given how many times I already tried. However until recently I was still using Xcode 16.3 to deploy to AppStore because of supporting older iO
Topic: Media Technologies SubTopic: Video Tags:
1w
PHPhotosErrorDomain Code: 3302 started affecting my users recently.
Recently I received multiple user email supports because the app cannot save video to photos, they are all on iOS 26.x The code in my app around recording video and saving to Photos hasn't changed in years. I'm not able to reproduce it locally, I tried on all my available devices. In recently published build I added additional logs and it appears that all of cases that fail with 3302 have the photos access set to Limited Access. It never happens to users with Full Access. In that build I also added a fallback, when saving to photos fails, the app saves to Documents and it seems it works (two of my users affected users confirmed it), but it's very unfortunate. I think it kind of proves that videos aren't broken given that users are able to play them just fine. On of users says that for him saving to Photos works for 2-3 times after he reinstalls the app and then it stops working. Did anything recently changed in how we should save videos to photos? I'm using the following code. I can
2
0
151
1w
String Catalogs auto-generated symbols located in Swift Packages with default Main Actor isolation don't compile with Xcode 26.4
Hello, I've already reported this issue via Feedback Assistant a month ago (FB22340897) but it's still open and I'd like to know whether I can expect something to be changed regarding it. Here are the details: It seems that Xcode 26.4 started specifying nonisolated for the resourceBundleDescription in the generated stringSymbols files for Swift packages: from: private let resourceBundleDescription = LocalizedStringResource.BundleDescription.atURL(resourceBundle.bundleURL) to: private nonisolated let resourceBundleDescription = LocalizedStringResource.BundleDescription.atURL(resourceBundle.bundleURL) This causes a compilation error: Main actor-isolated default value in a nonisolated context when the Package.swift for the Swift Package in which the string catalog is located specifies: swiftSettings: [.defaultIsolation(MainActor.self)] Since all tools (String Catalogs, Swift Packages and default actor isolation to be Main Actor) are recommended by Apple, I believe it should be possible to use all these
1
0
951
1w
How to delete iOS simulator runtimes?
There are multiple iOS simulator runtimes located at /System/Library/AssetsV2/com_apple_MobileAsset_iOSSimulatorRuntime which I don't need. I tried the following approaches to delete them but not working. Xcode > Settings > Components > Delete (It can delete some but not all of them) xcrun simctl runtime list (It doesn't show the old runtimes) sudo rm (Operation not permitted) sudo rm -rf cc1f035290d244fca4f74d9d243fcd02d2876c27.asset Password: rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/AssetData/096-69246-684.dmg: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/AssetData: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/Info.plist: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/version.plist: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset: Operation not permitted I have two questions: Why xcrun simctl runtime list is unable to list some old runtimes? How to delete them?
3
0
771
1w
Reply to How to delete iOS simulator runtimes?
I think you’ve misunderstood the point of this thread. When everything is working correctly you can indeed delete simulator runtimes using Xcode > Settings > Components. The issue that jamesic and revoceci have encountered indicates that things are not working correctly. The thread that revoceci referenced is where we’ve been discussing this issue in more depth. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1w
Reply to [macOS 26.4.x, iOS 26.4.x] Handoff broken?
I see this: default 15:14:10.967991+0200 sharingd Received Handoff payload reply from via Rapport () with requestIdentifier , xid default 15:14:10.968033+0200 sharingd Received requested Handoff payload via from () for with activity payload of size for requestIdentifier (). RTT: default 15:14:10.970822+0200 sharingd DeviceDiscoveryUpdate: SFDeviceDiscovery (CLink), 0x1 < Info >, cflags 0x21 < AdvData >, ScanRate Invalid, ScreenOff, RSSI Change Detection, RSSI >= -80 info 15:14:10.972649+0200 sharingd NearbyInfo sending activity level, original: 0xb encrypted:0x2 info 15:14:10.972951+0200 sharingd [NearbyAction] Scan restart skipped when unchanged info 15:14:10.972982+0200 sharingd [NearbyInfo] Scan restart skipped when unchanged info 15:14:10.973205+0200 sharingd [Prox] Scan restart skipped when unchanged default 15:14:11.011373+0200 sharingd Streams are being requested from service = default 15:14:11.011430+0200 sharingd Streams are being requested for bonjour name = info 15:14:11.011
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
1w
TLS Inspection with MITM Proxy setup for System Extension app in macOS
Hi All, I am working on a macOS System Extension using Apple’s Network Extension Framework, designed to observe and log network activity at multiple layers. The system extension is currently stable and working as expected for HTTP and DNS traffic with 3 providers, getting Socket, HTTP, and DNS logs. Current Architecture Overview The project consists of two Xcode targets: 1. Main App Process Responsible for: Managing system extension lifecycle (activation, configuration) Establishing IPC (XPC) communication with extensions Receiving structured logs from extensions Writing logs efficiently to disk using a persistent file handle Uses: OSSystemExtensionManager NEFilterManager, NETransparentProxyManager, NEDNSProxyManager NWPathMonitor for network availability handling Persistent logging mechanism (FileHandle) 2. System Extension Process Contains three providers, all running within a single system extension process: a) Content Filter (NEFilterDataProvider) Captures socket-level metadata Extracts: PID via
Replies
5
Boosts
0
Views
264
Activity
1w
iOS app shows black screen on TestFlight launch - no crash logs (Flutter, iOS 26)
Hello, I'm experiencing a critical issue with my Flutter iOS app on TestFlight where the app shows a completely black screen immediately after launch. The app does NOT crash (no .ips logs in iOS Settings → Analytics & Improvements), but Flutter Engine appears not to start at all. The same code runs perfectly on Android. PROJECT INFO: App Name: CNC AI Assistant Bundle ID: com.beratech.cncassistant Team ID: 958PPWZD27 Provisioning Profile UUID: 8122ca65-b15f-4daa-b0d2-1da5409c6859 Build CI: Codemagic Flutter Version: 3.41.5 iOS Deployment Target: 14.0 Test Device: iPad15,3 running iOS 26.x ISSUE BEHAVIOR: Build succeeds on Codemagic without errors IPA is signed with valid distribution certificate TestFlight processes and accepts the build Tester downloads/updates from TestFlight successfully App opens → completely BLACK SCREEN immediately LaunchScreen.storyboard does not appear App does not auto-close (must be manually killed) NO crash logs generated in iOS Settings Same exact codebase wor
Replies
2
Boosts
0
Views
132
Activity
1w
`URLSessionConfiguration.connectionProxyDictionary` Fails to Disable HTTP(s) Proxy on iOS 26.x
Our business interface requests require disabling HTTP(s) proxies. We configured URLSessionConfiguration.connectionProxyDictionary as before, but found that it does not work on iOS 26 1.Core code: let configuration = URLSessionConfiguration.default configuration.connectionProxyDictionary = [ HTTPEnable: false, HTTPSEnable: false, SOCKSEnable: false, ] let session = URLSession(configuration: configuration) let request = URLRequest(url: URL(string: https://www.baidu.com)!,timeoutInterval: Double.infinity) // 发送请求 let task = session.dataTask(with: request) { data, response, error in if let error = error { print(网络请求失败: (error)) } if let data = data { print(网络请求成功,返回数据长度: (data.count)) if let responseString = String(data: data, encoding: .utf8) { print(返回数据: (responseString.prefix(100))...) } } } task.resume() 2.Specific steps: We captured traffic using Proxyman and Charles. With the same code, requests cannot be captured on iOS 18 and iOS 16.1, but can be captured on iOS 26.2 and 26.1. Conclusi
Replies
4
Boosts
0
Views
266
Activity
1w
Misleading error on ForEach
During refactoring of an app I made a typo which leads to a misleading error message in Xcode 26.4. I could reproduce it with a small sample code in Swift Playground. Is it a bug which should be reported? Details: I have an array containing two strings. Using a ForEach loop is fine: ForEach(appData.dataArray, id: .self) { value in Text((value.subject)t(value.room)) } but with a typo in the Text line I got an error on the ForEach line: ForEach(appData.dataArray, id: .self) { value in --> Cannot convert value of type '[MyArray]' to expected argument type 'Binding' Text((value.subject)t(value.subject.room)) } Complete sample code from Swift Playground (macOS 26): import SwiftUI class MyArray : Hashable, Equatable, Identifiable, ObservableObject, Codable { let id = UUID() @Published var subject: String @Published var room : String private enum CodingKeys : String, CodingKey { case subject case room } init(subject : String, room : String) { self.subject = subject self.room = room } func encode(to encod
Replies
2
Boosts
0
Views
1.3k
Activity
1w
Reply to TLS Inspection with MITM Proxy setup for System Extension app in macOS
Thanks again for your clarifications @DTS Engineer! Here is the flow I am thinking to follow with my existing app so far: Network Traffic │ NETransparentProxyProvider │ ├─ Detect Protocol (first bytes) │ ├─ HTTP ─────> HTTPFlowLogger (existing) │ └─-------- HTTPS │ TLS Interceptor (NEW) │ ┌─────---───────────────┐ │ │ Client TLS Server TLS (terminate) (re-initiate) │ │ └──── Decrypted Bytes ─----┘ │ HTTPFlowLogger (reuse) To start with, I am thinking of something basic: Supporting all HTTP/1.1 traffic so that I can reuse my existing HTTP parser. Is it possible to downgrade(at least a part of) HTTPS traffic without loosing anything while doing so? What can I expect in terms of complexity and performance here? Now, As you've mentioned: Keep in mind that the world has moved on from HTTP/1. A good TLS inspection product should support HTTP/2 + TLS + TCP and HTTP/3 + QUIC + DTLS + UDP To support at least HTTP/2 + TLS + TCP(as I think most of the traffic these days), What's the best approach in this scenario? On
Replies
Boosts
Views
Activity
1w
Reply to SwiftUI Text rendering with too small height / one line missing causing unexpected text truncation on iPhone devices
The first sample didn't reproduce on the simulator or device without an accessibility override, which I had active on my device, but forgot. The second sample always reproduces on an iPhone 15 device / sim with affected iOS. Did you test also with this second sample or only the sample code from the initial post? For an iPhone 15 sim the following OS give these results: 17.5 works 18.6 truncates 26.4 truncates 26.5 truncates So it's likely an iOS 18.x regression. To pinpoint this more it would be necessary to download more iOS 18 SDKs. Regarding devices it seems to need a device with 2556x1179 resolution. So an iPhone 16 also reproduces this issue. struct ContentView: View { var body: some View { Text(txt) .dynamicTypeSize(.medium) .fixedSize(horizontal: false, vertical: true) .padding(.horizontal, 20) .frame(maxHeight: .infinity) } } Whether you wrap that ContentView in a ScrollView or not doesn't affect the truncation in my tests. In our main app this is part of an UICollectionView so also
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
1w
Reply to PHPhotosErrorDomain Code: 3302 started affecting my users recently.
Hi, as I mentioned I'm not able to reproduce it locally, I tried on all my available devices. so I don't have any error logs. I have NSPhotoLibraryAddUsageDescription and I reuse the same code in 3 of my production app that are on the marked for 9 and 10 years I never had those complaints until last month. My app also supports accessing user content (videos from Photos or Documents) they can load videos and reference them side-by-side with the recorded content. But it seems like a bug to me on the new version? I don't see anything that I changed. 2. It affects maybe 1% of users, and it works fine for 99% of users just fine. 3. In the analytics it appears there are no users affected by those error with Full Photos access, but I added those analytics just a couple days ago, before I wasn't tracking those errors. 4. I think I should be able to reproduce the error given how many times I already tried. However until recently I was still using Xcode 16.3 to deploy to AppStore because of supporting older iO
Topic: Media Technologies SubTopic: Video Tags:
Replies
Boosts
Views
Activity
1w
PHPhotosErrorDomain Code: 3302 started affecting my users recently.
Recently I received multiple user email supports because the app cannot save video to photos, they are all on iOS 26.x The code in my app around recording video and saving to Photos hasn't changed in years. I'm not able to reproduce it locally, I tried on all my available devices. In recently published build I added additional logs and it appears that all of cases that fail with 3302 have the photos access set to Limited Access. It never happens to users with Full Access. In that build I also added a fallback, when saving to photos fails, the app saves to Documents and it seems it works (two of my users affected users confirmed it), but it's very unfortunate. I think it kind of proves that videos aren't broken given that users are able to play them just fine. On of users says that for him saving to Photos works for 2-3 times after he reinstalls the app and then it stops working. Did anything recently changed in how we should save videos to photos? I'm using the following code. I can
Replies
2
Boosts
0
Views
151
Activity
1w
String Catalogs auto-generated symbols located in Swift Packages with default Main Actor isolation don't compile with Xcode 26.4
Hello, I've already reported this issue via Feedback Assistant a month ago (FB22340897) but it's still open and I'd like to know whether I can expect something to be changed regarding it. Here are the details: It seems that Xcode 26.4 started specifying nonisolated for the resourceBundleDescription in the generated stringSymbols files for Swift packages: from: private let resourceBundleDescription = LocalizedStringResource.BundleDescription.atURL(resourceBundle.bundleURL) to: private nonisolated let resourceBundleDescription = LocalizedStringResource.BundleDescription.atURL(resourceBundle.bundleURL) This causes a compilation error: Main actor-isolated default value in a nonisolated context when the Package.swift for the Swift Package in which the string catalog is located specifies: swiftSettings: [.defaultIsolation(MainActor.self)] Since all tools (String Catalogs, Swift Packages and default actor isolation to be Main Actor) are recommended by Apple, I believe it should be possible to use all these
Replies
1
Boosts
0
Views
951
Activity
1w
Reply to String Catalogs auto-generated symbols located in Swift Packages with default Main Actor isolation don't compile with Xcode 26.4
Hello! Thanks for reporting this issue! We believe it's fixed in Xcode 26.5 Beta 3: https://developer.apple.com/documentation/xcode-release-notes/xcode-26_5-release-notes#Localization When you have a chance, can you please download Beta 3 and verify it? Thanks!
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
1w
Xcode 26.2 build crash when building project
Xcore 26.2 run on newly installed macOS 15.7.3 (24G419) crashes when attempting to build assets backtrace
Replies
1
Boosts
0
Views
276
Activity
1w
Reply to Xcode 26.2 build crash when building project
Hi Marcin, Were you able to solve this? Or perhaps a newer Xcode version solved it?
Replies
Boosts
Views
Activity
1w
How to delete iOS simulator runtimes?
There are multiple iOS simulator runtimes located at /System/Library/AssetsV2/com_apple_MobileAsset_iOSSimulatorRuntime which I don't need. I tried the following approaches to delete them but not working. Xcode > Settings > Components > Delete (It can delete some but not all of them) xcrun simctl runtime list (It doesn't show the old runtimes) sudo rm (Operation not permitted) sudo rm -rf cc1f035290d244fca4f74d9d243fcd02d2876c27.asset Password: rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/AssetData/096-69246-684.dmg: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/AssetData: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/Info.plist: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset/version.plist: Operation not permitted rm: cc1f035290d244fca4f74d9d243fcd02d2876c27.asset: Operation not permitted I have two questions: Why xcrun simctl runtime list is unable to list some old runtimes? How to delete them?
Replies
3
Boosts
0
Views
771
Activity
1w
Reply to How to delete iOS simulator runtimes?
I think you’ve misunderstood the point of this thread. When everything is working correctly you can indeed delete simulator runtimes using Xcode > Settings > Components. The issue that jamesic and revoceci have encountered indicates that things are not working correctly. The thread that revoceci referenced is where we’ve been discussing this issue in more depth. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
1w