Search results for

file uri scheme

78,591 results found

Post

Replies

Boosts

Views

Activity

Adding test target not work in Xcode 6
Hi,I am trying to add a test target in my current project using + sign at the bottom of the left column of Test Navigator (XCode 6.3.2). The target is created but never appear in the left column... and also, not appear in the test section of my scheme. It seem that this problem is related to my project, because it is working perfectly with template projects provided by XCode. My project document format was set to XCode 3.2, and now is set to 6.3, but it is still not working.Do you have an idea?Thanks!David
0
0
225
Jun ’15
Reply to Restart required before first logging in with AD mobile user account
Bug filed for this issue. For those who wish to dupe it, it is bug ID 21420857.Bug details:Title: Mac OS X 10.11.0 (15A178w): Restart required before first logging in with AD mobile user accountSummary:When logging into an AD-bound Mac, where the Apple AD plug-in is active and set to create mobile users, a restart is required as part of a AD mobile account's first loginSteps to Reproduce:1. Bind Mac running OS X 10.11.0 (15A178w) to Active Directory using Apple's AD plug-in2. Enable the Apple AD plug-in's Create mobile account at login option3. Disable the Apple AD plug-in's Require confirmation before creating a mobile account option4. Log in at the OS X login window with an AD account which had not previously logged into this MacExpected Results:Login process would appear pause briefly while the AD mobile account's account credentials were cached and home folder was created.Once AD mobile account's credentials were cached and the home folder was created:1. The loginwindow would disappear2. The AD a
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to First install impressions?
Installation slow, but no issues.General impression: Massively improved performance on a late 2013 MBA. Fans were spinning often on Yosemite before, now system is cool (literally). Also, it behaves a lot faster. So that's good and it really makes me not want to go back.Some observations in random order:Eliminated custom content from /usr, which broke LaTeX. Needed disabling rootless to restore.Java problems were avoided by switching to Java8 before.VirtualBox works w/o problems.Skim is broken. Which is a big one for all students probably :-(Magic Trackpad behaves weirdly (operational, except mouse cursor not moving) when connecting MBA to TB display. Using insomnia to not have it sleep when connecting solves it.TB connected audio device (through belkin hub) stopped working, after a reboot it was there againFefe's blog shows white boxes when pinch-zooming in SafariThe announced new tiling features are at odds with my being too stupid to make them work in any way.TotalSpaces 2 could be made work with a quick up
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Mail: Add (contact; calendar entry) issues
Mail shows a function to add a contact. This mixed up on my end by adding my own email address to some address book entry, making then all my mails show up under the newly added contact's name. Had to remove from address book and restart mail.Adding a calendar invite is also kind of weird. It adds a link to the mail, not the attached ics file, to a random calendar.
0
0
136
Jun ’15
Reply to How to print Swift 2.0 iBook
Well, actually I've just had some success, with help from the SiteSucker developer. Notes on this:- there are actual .epub files now for the Swift preview docs, but they are DRM'ed and cannot be read by calibre (but you can read both in iBooks)- per my link in an earlier reply, you can use an older free version of SiteSucker (2.4.6 is the last free version) to download the Swift Web Sites- the latest paid SiteSucker has some issues due to sandboxing, and may or may not ever be able to download these sites- the one new required setting is under Advanced, Options, Generate HTML - it must be set (this is called Use Web Views in later releasesNow you can pull in the Swift web pages to your local machine. You then drop the index.html file into calibre, and it reads in the site. You would then use calibre to output HTML. This gets a bit trickey - if you don't do anything, you will get little iPhone sized pages with a huge Font Size. So tap the Output button, then select PDF in the upper right, and
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
install error: invalid info dictionary
When I install my app on simulator, I have no problem.But when I want to install it on my Watch I always get an error which tell me install myApp, error: invalid info dictionary.I tried with xcode 6 and xcode 7beta1 on old and new projects but always the same problem.You can see my log file :Someone could help me? or already got this problem?
7
0
2.2k
Jun ’15
Reply to Bitcode and Assembly?
One update. It appears the library project I have was dropping bitcode because it had GENERATE_MASTER_OBJECT_FILE turned on. This seems like a bug in Xcode. I filed bug report 21422164.I'm still curious if/how assembly will be packaged in an app archive when it is submitted to iTunes Connect.Thanks!-David
Jun ’15
Texture buffer sampling
Correct me if I'm wrong, but it appears -- at least initially -- that Metal in 10.11 will not support the equivalent of texture buffer objects?We have a few titles that require these - radar filing time?
0
0
123
Jun ’15
Reply to Bitcode and Assembly?
Thanks for the bug report about using GENERATE_MASTER_OBJECT_FILE. We'll take a look at that.When you use assembly files, you're basically opting out of using bitcode for just those files. Even though there is a general requirement that bitcode is an all-or-nothing thing, i.e., all the 3rd party libraries you use must include bitcode, we make a special exception for assembly code. You still need to build assembly files with clang -fembed-bitcode, though.Bitcode can be embedded in both static and dynamic libraries. In either case, you need to build them with an Archive action in Xcode (or from the command line, using clang -fembed-bitcode or swiftc -embed-bitcode).
Jun ’15