Search results for

smb big sur

11,740 results found

Post

Replies

Boosts

Views

Activity

Are NSURLSession background downloads limits per app or per device?
Eskimo, sorry to keep obsessing about the limits of NSURLSession background downloading, but could you confirm my experimental results that NSURLSession active background download session limits apply to the total number of active download sessions used by all applications on the device?I wrote some test apps, and it looks like on an iPhone 6 running iOS 9.0b2 the limit is around 800 active background download sessions. More than that and the time taken to create an additional session starts increasing dramatically. Once there are 850 active sessions it seems to take more than 30 seconds per additional session. The slowdown happens at around 1700 active sessions on the simulator, on both iOS 8.2 and 9.0b2. So there's some difference between real devices and the simulator here.Please accept my apologies if this is just crazy talk. There seems to be a memory effect, where performance of NSURLSession depends on past runs of an app, even if the app has been uninstalled and reinstalled. I tried to account for this
1
0
1k
Aug ’15
Mail storage of attachments
Anyone else notice this issue? Before upgrading to iOS 9 beta, my mail application would store attachments (mainly audio files) in the phone forever without having to re-download them later. Now, I'm noticing that it only holds attachments for a day or so, sometimes less depending on how many restarts, then clears them off - meaning I have to download them again when going back to the e-mail. This is an issue for two reasons. 1) It absolutely destroys my data plan when I have to keep re-downloading attachments in big numbers and 2) Some applications, like Spotify, are smart enough to pull from downloaded mail attachments to play local playlists. Without stored files this functionality is broken.Thanks for any thoughts. If it makes any difference, I'm using a Gmail account.
2
0
338
Aug ’15
Simple Image Scaling Question
I have an Image View horizontally and vertically centered in the container. The dimensions are 341 by 260. When run on an iPhone 6 the image is the optimal size, looks great and is proportionate to my liking for the screen size. However when run on an iPhone 4, 5, 6+ (smaller or larger screen dimensions) the image maintaines the same dimensions and is now to big or small for the screen. How do I make it scale when run on different screen sizes?
1
0
527
Aug ’15
IOS9 Beta 3 bluetooth Headset not working
Hello,since last night, after the update came for Beta 3(?) build 13A4325c, the headset (ok, I have a cheap one from TaoTronics, but was working fine) no longer working as bluetooth Voice device. Music listening is fine.Any Ideas for a walkaround? Removing and adding finished, but no change in behavior.Update: It does connect with the intercom in the car, but no voice transfer possible. This is a big bug I guess. Thanks for your support!FrankM
1
0
275
Aug ’15
Reply to Host reachable via WiFi periodically reported as being reachable via WWAN and back
Our app uses WiFi to communicate with VoIP server (in both fore- and background), periodically connecting to a dedicated server asking for data updates.I have two big picture questions here:I presume you're using the original VoIP architecture, as opposed to the PushKit architecture we introduced in iOS 8?When you say uses WiFi to communicate with VoIP server, does that mean the VoIP server is only available on Wi-Fi? That is, is the VoIP server available on WWAN at all?Share and Enjoy — Quinn The Eskimo! Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Aug ’15
Reply to send sms swift error
I'm not sure what else is going on with your project, but this line is wrong:messageVC.recipients = [077669789805]The recipients property is meant to be an array of strings, so you'd have to write this: messageVC.recipients = [ 077669789805 ]If you need further help with this, please let us know what version of Xcode you're using. There are big differences between Xcode 6.4 and Xcode 7 beta, and it's hard to give specific answers without knowing which one you're targeting.Share and Enjoy — Quinn The Eskimo! Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’15
Reply to watchOS 2 beta 5 crashes running watchOS 1 apps from the AppStore
I'm assuming after this process above you were able to set the passcode and get Apple Pay cards working. It's not a big deal if not just wondered if you tried that as well. This is the first beta where I've had to do a complete reset as the others upgraded file (though I did have to reset the sync data often). Just curious if those things were still working for you after reset and the skip.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Reply to MBPr frozen after beta 6
part 4/lastJan 3 22:04:50 apollo iconservicesagent[74]: Starting service with cache path: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.iconservices Jan 3 22:04:50 apollo coreduetd[78]: CoreData: Failed to load optimized model at path '/System/Library/PrivateFrameworks/CoreDuetDataModel.framework/Resources/CoreDuetDataModel-PR-19621179.omo' Jan 3 22:04:50 apollo com.apple.xpc.launchd[1] (com.apple.appkit.xpc.sandboxedServiceRunner): The JoinExistingSession key is only available to Application services. Jan 3 22:04:50 apollo wirelessproxd[84]: updateScanner - central is not powered on: 0 Jan 3 22:04:50 apollo diskmanagementstartup[64]: started Windows Installer Partition removal Jan 3 22:04:50 apollo diskmanagementstartup[64]: Windows Installer Partition removal: No trigger, so doing nothing Jan 3 22:04:50 apollo diskmanagementstartup[64]: finished Windows Installer Partition removal; error = 0 Jan 3 22:04:50 apollo awdd[192]: SeedAutoSubmitPreference is 1 via AutoSubmitPreferenceKey Jan 3 22:04:5
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Reply to iTunes Connect Apple Review process
Drilling down thru 'Support/App Store' link above, you can find - App Review Status. Averages are shown for recent waits.Waits to get to review and review times themselves vary, depending on the queue and type of app, etc.If you set the release date to the future, be sure to track it against actual ready for the store status...don't assume it will be approved first time, and that date might slip into the past by the time it's ready. No big deal if that happens, but don't assume anything about the process, especially if you have some calendar event planned.
Aug ’15
Cloudkit very slow response with: fetchUserRecordIDWithCompletionHandler
Hello,I am getting really really slow response times with fetchUserRecordIDWithCompletionHandler It takes 10 seconds+ to fetch the user record id sometimes even a full minute or longer. A simple request like that can't take that long. And a few times it took only a few seconds...(this is a big problem since the user has to wait a long time, since the id is directly needed in the app)I presume it has something to do with the priority of the operation since cloudkit works asynchronously. Maybe there's someway to change this like you can do with a CKOperation by changing queuePriority.Right now I am testing with this simple code, to make sure it works still the slow response times are there. Of course my xcode project is bigger but this code gets called directly in the view did load method as the first thing.CKContainer.defaultContainer().fetchUserRecordIDWithCompletionHandler({ (userRecordId: CKRecordID!, error:NSError!) -> Void in println(userRecordId) })I have looked at other answers around slowne
2
0
1.5k
Aug ’15
Mail keeps crash and rebuilt
after upgrade to public beta, Mail always shows there is a problem with your mailboxes and I have to Quit or Quit and rebuild”. During the rebuild process, there is a very huge (can up to several GB) log file named as $date_Library.log in /Users/username/Library/Containers/com.apple.mail/Data/Library/Logs/Mail. Then, I have to reset the Mail to factory setting follows the instruction (https://discussions.apple.com/thread/5118986)But when upgrade to PB4, the issue goes worse. The reset is not working. Finally, I have to reinstall PB and also try restore from time machine. Still, Mail crashed. Anyone comments will be appreciated.I have to say, the 10.11 PB is much much much worse than 10.10 PB. During the 10.10 PB, basically, I have no big issues.
1
0
265
Aug ’15
Downloadable content under iOs
Hello!I have a question about storing downloadable content under iOS 6.0 and higher.Where should I store content of about 300 MBytes? According to this article:https://developer.apple.com/icloud/documentation/data-storage/index.htmlit should be stored in the <Application_Home>/Library/CachesThis article:https://developer.apple.com/library/mac/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html#//apple_ref/doc/uid/TP40010672-CH2-SW1tells that /Caches directory may be cleared by OS in some situations, which is not desirable for us. The article advises to store downloadable content in <Application_Home>/Library/Application SupportIt's not clear enough, is this directory automatically backed up to iCloud, which is also not desirable because of big data size.So, which variant is better?
2
0
132
Aug ’15
Reply to SpriteKit + GLKit
Does it currently only use metal? If so thats a pretty big issue, but i've tested and you can use a SceneKit scene set to OpenGL and use SpriteKit as a SCNMaterial. But it can't only support Metal, only 3 of the iOS 9 devices can use metal. everything else is OpenGL.
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Aug ’15
Reply to MBPr frozen after beta 6
Aug 10 22:37:59 apollo kernel[0]: en1: promiscuous mode enable succeeded Aug 10 22:37:59 apollo kernel[0]: IO80211AWDLPeerManager::setAwdlOperatingMode Setting the AWDL operation mode from SUSPENDED to AUTO Aug 10 22:37:59 apollo UserEventAgent[47]: tcp_connection_destination_perform_socket_connect 1 connectx to 23.203.18.208:80@en0 failed: [64] Host is down Aug 10 22:37:59 apollo UserEventAgent[47]: Captive: CNPluginHandler en0: Authenticated Aug 10 22:37:59 apollo kernel[0]: IO80211AWDLPeerManager::setAwdlAutoMode Resuming AWDL Aug 10 22:38:29 apollo warmd[68]: [warmctl_evt_timer_bc_activation_timeout:285] BC activation bcstop timer fired! Aug 10 22:39:00 apollo apsd[87]: Failed to send activation record to service com.apple.ManagedClient.enroll Aug 10 22:39:09 apollo WindowServer[195]: Server is starting up Aug 10 22:39:14 apollo watchdogd[192]: [watchdog_daemon] @(_wd_daemon_service_thread) - service (com.apple.WindowServer) reported as unresponsive Aug 10 22:39:14 apollo spindump[196]: CGSLookupServerRoo
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15