Search results for

smb big sur

11,740 results found

Post

Replies

Boosts

Views

Activity

Reply to BGAppRefreshTask expires after few seconds (2-5 seconds).
Regarding using notification to test the behavior, the idea is nice, but the slight problem is that it requires somebody closely watching the phone to quickly react to unpredictable background fetch event. Not really. The sysdiagnose capture covers a very long period of time (hour to days, depending on circumstances) so as long as the device hasn't been rebooted* it doesn't actually matter when you collect the log. While closer in time is theoretically better, for an issue like this there isn't really any practical difference between collecting a long immediately vs 30+ minutes later. *A lot of log data is purged at reboot, so that is a problem for this sort of thing. For most issue I actually recommend developer wait 5-10 min. after an issue before they trigger the log, as that makes sure that the log noise of the sysdiagnose isn't mixed in with any trailing log data. I'll also say that the upper time band here is pretty big. I don't like saying sure, collect it 4 days later because things do go wro
Apr ’25
Reply to Directive 4.8 - Conception - Services de connexion
Bienvenue sur le forum. Est ce que votre app utilise 'un service de connexion tiers,' tel que Facebook Login, Google Sign-In, Sign in with Twitter, Sign In with LinkedIn, Login with Amazon, ou WeChat Login Si non, il faut le signaler au reviewer, que vous n'êtes pas dans ce cas. Si oui, vous pouvez soit utiliser la connexion avec Apple login, à la place de celle utilisée, soit montrer que vous respectez les exigences 2 et 3. Attention, la traduction que vous avez des guidelines est imprecise. Les exigences sont: le service de connexion limite la collecte de données au nom et à l'adresse électronique de l'utilisateur ; le service de connexion permet aux utilisateurs de ne pas divulguer leur adresse électronique lors de la création de leur compte ; et le service de connexion ne collecte pas les interactions avec votre application à des fins publicitaires sans le consentement de l'utilisateur. Et enfin, mettez à jour les copies d'écran si besoin.
Apr ’25
Reply to Receive Custom URL Parameters
any URLs should be passed to: func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:] ) -> Bool I do not register the above application function to be called I'm a bit confused by what you're saying here. That's the function the system uses to pass URLs into your app. Why haven't you implemented it? instead this one is executed during app start with launchOptions always being nil: func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool This is the case regardless of if the App is started fresh or was already running in the background. Unfortunately, the system's implementation would be much more coherent if we completely removed launchOptions. The issue here is that application(_:didFinishLaunchingWithOptions:) is very, very old, dating from iOS 3. When it was original introduced the big innovation here was that the system could now pass informa
Topic: App & System Services SubTopic: General Tags:
Apr ’25
15.4.x breaks softwareupdate --fetch-full-installer --full-installer-version
Hi, looks like 15.4.x has broken softwareupdate --verbose --fetch-full-installer --full-installer-version for all versions (still works in 15.3.1) softwareupdate --verbose --list-full-installers Finding available software Software Update found the following full installers: * Title: macOS Sequoia, Version: 15.4.1, Size: 15244333KiB, Build: 24E263, Deferred: NO * Title: macOS Sequoia, Version: 15.4, Size: 15243957KiB, Build: 24E248, Deferred: NO * Title: macOS Sequoia, Version: 15.3.2, Size: 14890483KiB, Build: 24D81, Deferred: NO * Title: macOS Sequoia, Version: 15.3.1, Size: 14891477KiB, Build: 24D70, Deferred: NO * Title: macOS Sequoia, Version: 15.3, Size: 14889290KiB, Build: 24D60, Deferred: NO * Title: macOS Sequoia, Version: 15.2, Size: 14921025KiB, Build: 24C101, Deferred: NO * Title: macOS Sonoma, Version: 14.7.5, Size: 13337289KiB, Build: 23H527, Deferred: NO * Title: macOS Sonoma, Version: 14.7.4, Size: 13332546KiB, Build: 23H420, Deferred: NO * Title: macOS Sonoma, Version: 14.7.3, Size: 13334287Ki
1
0
100
Apr ’25
Reply to What is the appropriate accessibility trait for selectable UITableViewCell?
Ideally, accessibility traits are consistent in an experience, but for apps as large as Settings or as big as your own it may be possible for inconsistencies to arise in applying the .button trait. In these cases, VoiceOver users are typically able to intuit the functionality of accessibility elements based on the context of the UI around it. There's not really a wrong answer here, but it may be omitted for brevity if it's clear otherwise. The .selected trait is certainly the more important of the two, and its usage should be applied anywhere a selection or choice is made and communicated through symbols like this checkmark.
Apr ’25
Reply to StoreKit 2 AppTransaction failing
If you sell your app from your site it could be a problem with your receipts and verification. If this is happening to users that buy it from the App Store then it's likely that there's a BIG problem with 15.5. I understand your frustration with Mac development - crappy documentation in Swift only, very weak developer support, etc.
Topic: App & System Services SubTopic: StoreKit Tags:
Apr ’25
Reply to App submission
What does your app description say in its entirety? Give us the entire text so we can see what they're talking about. It might be that you're mentioning things available in the app, but it's not clear that everything requires a subscription. Your UI also says, in grey text - which isn't immediately obvious: A subscription is required to use VentWell and access all features. This suggests to me that some features don't require a subscription? Not sure why you have that big Monthly button with the text saying, 3 days free, then $9.99/month and immediately below it is the same text in grey. Any reason that needs to be there twice (plus the grey text at the top saying it in a slightly different way)? On a separate note, does your description really say Subscription begins after 3 day free-trial and auto reknews monthly? If so, that's not how you spell renews.
Apr ’25
Reply to macOS does not see an _smb._tcp service defined via Wide-Area DNS-SD
I'm a bit puzzled regarding why both Finder (Connect to Server->smb://gateway.home.arpa) and Safari (https://gateway.home.arpa) can successfully connect but dns-sd fails to resolve. AFAIK they both refer to the same stub resolver (mDNSResolver): $ dns-sd -q gateway.home.arpa. A DATE: ---Sat 12 Apr 2025--- 10:29:38.633 ...STARTING... Timestamp A/R Flags IF Name Type Class Rdata 10:29:38.634 Add 40000002 0 gateway.home.arpa. Addr IN 0.0.0.0 No Such Record $ dns-sd -q gateway.home.arpa. AAAA DATE: ---Sat 12 Apr 2025--- 10:29:41.623 ...STARTING... Timestamp A/R Flags IF Name Type Class Rdata 10:29:41.624 Add 40000002 0 gateway.home.arpa. AAAA IN 0.0.0.0 No Such Record
Apr ’25
Best practices for A/B tested releases
Looking for some advice around how best to communicate a new feature release that is guarded by an A/B test. Only 50% of upgraded users will be seeing the new experience. What would you say are the pros/cons of releasing with updated App Store assets and release notes that discuss this big new feature, but only 50% will be able to see it / use it. Is it best to wait to release new assets / notes discussing the feature once it's at 100% rollout for all users? Or is it acceptable to release earlier - and have some customers wondering why they aren't seeing it. Thank you!
0
0
41
Apr ’25
Reply to SMB-Multichannel is incomplete or broken
Hi there, same problems here with Synology NAS in 2025. Works fine in windows with a 220MB/s copy speed Up/Down from SMB. but I can't get it to work on MacOS, where I still get only 117 MB/s You can see in my screenshot that I have an 10Gb/s card on my iMAc and that there are 2 Server NIC (192.168.1.3 and .4) and MacOS only uses 1 connection, and it states that multichannel is ON. Using Sequoia 15.4 I don't know how to fix this, so please help! Thank you!
Topic: App & System Services SubTopic: Hardware Tags:
Apr ’25
CLLocationManagerDelegate not working on Siri Intents
I need to elicit the location of the user in the Siri intents and so I call: override init(){ super.init() self.locationManager=CLLocationManager() self.locationManager.delegate = self; self.locationManager.startUpdatingLocation() self.locationManager.requestWhenInUseAuthorization() } Still neither public func locationManagerDidChangeAuthorization(_ manager: CLLocationManager) nor public func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) are ever called, notwithstanding the presence of the correct entry in the info.plist, the inclusion of the library and the indication of the delegation with: class IntentHandler: INExtension, INSendMessageIntentHandling, CLLocationManagerDelegate, UISceneDelegate are ever called. Is there any problem with CLLocation manager on intents? What would be a big problem as there is no way to share information with the main app!
2
0
70
Apr ’25
Reply to Network Service Order for IoT Ethernet device
I have a bunch of backstory to this in Extra-ordinary Networking, and the various posts that hang off it. If your accessory implements a DHCP server then it should not vend a gateway, that is, it should set the giaddr field to all zeroes. If there’s no gateway then the interface can’t become the default route. Honestly though, I’m a big fan of not implementing a DHCP server at all, and instead have the client find the accessory using Bonjour over IPv6. That combo is simple, and it always works. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Apr ’25
Reply to Warning: Reference to captured var 'hashBag' in concurrently-executing code
Using a task group to protect a hash table is unlikely to yield sensible results. As to what would be better, it’s hard to say without knowing more about the context. You could, for example: Confine access to this hash table to the main actor. Or embed it with a custom actor. Or protect it with Mutex. If you explain more about the big picture, we should be able to suggest a more concrete path forward. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: Programming Languages SubTopic: Swift Tags:
Apr ’25