Search results for

file uri scheme

78,568 results found

Post

Replies

Boosts

Views

Activity

Reply to app crashes during the review
Post the crash log. (the header and crashed thread, at least - don't need the long list of binaries)If it is symbolicated, it should contain the source file and line number if any of your code is involved in the crash. If it's not symbolicated, drag it into the Device Logs view in Xcode's Devices window when you have a device connected. Xcode should then symbolicate it.
Jun ’15
Reply to iCloud login crash in System Preferences
Many people had this same issue. I solved it by deleting all files from the following folder:/Users/<YOUR HOME FOLDER>/Library/Application Support/iCloud/AccountsThen reboot.I was then able to get into the iCloud preference pane, where it asked me for my new password. After giving it, all was working again.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Xcode 7 is 32 bit supported?
We do general Unix development on Mac OS X but because some of the libaries we link against are currently on 32 bit we have to produce 32 bit binaries.When using Xcode 6 we can debug Unix binaries by selecting My Mac (32-bit) in the scheme selector, on Xcode 7 we only get My Mac and it gives the error: the specified architecture 'x86_64' is not compatible with 'i386-apple-macosx' in '/usr/atc-5.00.5/dev/cust0400/xcust'.I don't see any method of specifying i386 or 32-bit anywhere in build settings.Thanks, regards, Rob.
2
0
2.7k
Jun ’15
Reply to Compiler crash
I am seeing this problem as well when I activate whole module optimization in Build Settings.Since I have a ton of Swift files on the command line (shown in the dump), I was wondering if there was a way to tell the compiler to indicate which particular file it was working on just before the crash happens?----------------------------------------------------------------------Assertion failed: (D->getSourceRange().isValid()), function buildDeclarationRefinementContext, file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.38.1/src/swift/lib/Sema/TypeChecker.cpp, line 946.0 swift 0x000000010378ae0b llvm::sys::PrintStackTrace(__sFILE*) + 431 swift 0x000000010378b54b SignalHandler(int) + 3792 libsystem_platform.dylib 0x00007fff8b2adf1a _sigtramp + 263 libsystem_platform.dylib 000000000000000000 _sigtramp + 19601246724 libsystem_c.dylib 0x00007fff8fe4cb53 abort + 1295 libsystem_c.dylib 0x00007fff8fe14c39 basename + 06 swift 0x0000000101defe92 (anonymous namespace)::TypeRe
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to iOS 9 Beta battery life
Now I've been able to run my iPhone 6 128GB with iOS 9 beta 1 for 40 minutes straight in standby mode (just viewing some e-mails from time to time, mobile data enabled, all background stuff disabled with not even 1% loss on the battery. Battery saving mode is also disabled. Don't really know what I did.. All I did was viewing the log files through the device viewer in Xcode. Disconnected the cable after a while and ended up where I'm now.. Before viewing the logs in Xcode I rebooted the phone also. But I did not change any settings in the phone from where it was before so I don't really understand what's going onSoon it's actually 50 minutes without any battery loss.. still at the 97% as it was when I disconnected it from my Mac. Seemingly the background activity going on before on the home screen also suddenly stopped.I'm going to spend my weekend looking into this matter a bit deeper, just for the pure fun of it
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Battery overspending IOS9
I can say that I usually make it from 6:30 to 17:00 with ~40% remaining on a regular work day (with iOS 8.4). With iOS9 I can make it from 6:30 to 12:00 with ~40% remaining. Definitely filing a BR on this one, hopefully it gets fixed in next release. There's a similar problem in WatchOS 2 with battery draining. I used to make it all day with ~40% remaining when I got home from work, now I'm lucky to have ~10%.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Frequent network failures with OS X 10.11 Beta
I've noticed that my Mac will intermittently stop performing network request. I can see these error message in Console around the time when I notice network issues.6/11/15 10:31:20.379 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:32:29.139 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:33:39.135 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:33:47.990 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6) 6/11/15 10:33:47.990 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6) 6/11/15 10:34:54.126 AM networkd[161]: -[NETProxyLookup copyURL] invalid URL scheme '5223' 6/11/15 10:35:57.161 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6) 6/11/15 10:35:57.161 AM mDNSResponder[85]: nw_interface_get_agents SIOCGIFAGENTIDS failed (errno = 6)Anyone else with the Beta experiencing this? If I boo
1
0
373
Jun ’15
EXC_BAD_INSTRUCTION when Swift optimization is enabled
Hi all,In XCode 7, when I enabled Swift optimization for my target, I am getting EXC_BAD_INSTRUCTION exceptions where there were none if compiled by XCode 6.3.Unfortunately, nothing is printed on the Console when it happens, and the address sanitizer or Zombies find nothing.Is anybody else seeing this?So far I cannot make a clear and small reproducible case (smaller than the whole project) in order to file a bug.
1
0
484
Jun ’15
Reply to App opens CoreData stores when launch via Xcode, but not when launched via Finder
It's definitely sandboxed---the core data files are being created, written to, and read from its Application Support folder in the sandbox Container. Does Xcode treat the sandbox differently when launching an application?Yes, Xcode and the OS have changed. I'll march backwards and see if I can figure out if one of those has made a difference. In other unrelated work I've found that the jump from Xcode 5 to 6 revealed a number of multithreading bugs, so I suppose this could be related.
Jun ’15
watch os 2 file exchange
I'm trying to send a text data from watchOS 2 to iPhone but found out the hard way that I can no longer use openParentApplication on iOS9. So my next recommended option is to save text into a file and send it via shared groups, which from the watchOS 2 transitioning guide is no longer possible:You cannot rely on a shared group container to exchange files with your iOS app. Fetching files involves transferring them wirelessly to Apple Watch.WatchOS2 transition doc says there are mechanisms to do transfer of a file over network but no specifics or guidance.While Apple Watch provides mechanisms to facilitate those transfers, you must update your data-handling code to support those mechanisms.What are the mechanisms?I read through the WKInterfaceController doc and header file and didn't see an API to do network file transfer.
2
0
589
Jun ’15
Fix re-entering password 10x on login - Keychain access iCloud on El Capitan
I have to keep entering in my password about 10x every time I restart even after authenticating my iCloud keychain access on my devices and Macbook Pro. How do I make sure that the Keychain access works properly so I don't need to enter in my password 10x everytime I restart my MacBook Pro or log-in?It also says pending on my iCloud Keychain on my iPhone.I tried going back into Settings > iCloud -- but it crashes every single time. I have also tried going to this locally on my browser, but don't know how to delete the files? file:///Users/<user name>/Library/Application%20Support/iCloud/Accounts/
6
0
2.7k
Jun ’15