Search results for

show when run

112,693 results found

Post

Replies

Boosts

Views

Activity

Reply to san francisco
There appears to be some strange internal doublethink going on with the bundled version of San Francisco.Indeed, like all core fonts, it's located in /System/Library/Fonts, and it occupies a handful of files prefixed SFNS. But it doesn't show up anywhere in Font Book, as far as I could see. And if you go to re-install it (File: Add Fonts and select those files), it will happily copy the files out of the system folder into ~/Library/Fonts——but will still absolutely refuse to show it in the font list!Whatever the reasoning behind this, it's totally creeping me out.(note that the same font—the same files, AFAICT—can be downloaded from Apple directly, but have the prefix SanFrancisco instead of SFNS.)
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can't reply to message in watchOS 2
ive got the same problem, when reciving a message it will show above the clock face after raiseing wirst but no reply button.. reply button only shows in the messages app, well for me anyway.. i also cant get message to send as a SMS either so i think its best to report the bug to apple and wait for Watch OS 2 Beta 2.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Any news on reflection in Swift 2.0?
They showed simple enum type names printing properly during the What's New In Swift session that can be streamed from WWDC.In Swift 2 / Xcode 7 beta, it seems that enums imported from ObjC still have issues, and only simple Swift enum types are printable.let strX = this is (NSRoundingMode.RoundPlain) // this is C.NSRoundingMode enum TestBasicEnum { case Option1 case Option2 } let strY = this is (TestBasicEnum.Option1) // this is TestEnum.Option1 enum TestRawEnum: String { case Option1 = text1 case Option2 = text2 } let strW = this is (TestRawEnum.Option1) // this is TestEnum.Option1 enum TestRichEnum { case Option1 (String) case Option2 (String) } let opt = TestRichEnum.Option1(text) let strZ = this is (opt) // this is TestRichEnum
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
No internet when connected to VPN
Hi I have a Mid 2011 Mac Mini 500GB HDD with 8GB of ram. Have updated it to OS 10.11 and everything is running smooth and install went off without a hitch. However when I connect to my VPN connection ( Private Internet Access ) it connects without error. Then i launch Safari and internet pages will not load. I then disconnect and they load normally. I have also tested on my Mid 2014 rMBP and it works fine. I have removed and resintalled the VPN but this has not resolved the issue. Possibly looking at full reinstall to resolve the issue. Anoyone else having the same issue?
5
0
2.8k
Jun ’15
Reply to unable to wake from sleep
I found my iMac struggling to wake up. I waited, and it eventually did. I found a process, sdmd had eaten all the memory. After a reboot (Which took a while!), it now seems to be fine, and this process hasn't run away with the memory again.I suspect it's some form of indexing daemon that isn't properly optimised yet.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
The operation couldn’t be completed. Ad inventory unavailable.
Hi everyone!I'm creating my app in swift and I'm testing the iAd too. Yesterday, after the link with iTunesConnect, my app showed about 10 Ad, but after this 10 Ad, it give me ever an error when I try to show the Ad. It say me :The operation couldn’t be completed. Ad inventory unavailable. I just went in settings and I setted the Fill Rate to 100%, for testing, but it send me the same error...Who can help me?Thanks!Giorgio
2
0
1.2k
Jun ’15
Reply to The core Idea Of Metal
Yes.A central focus of Metal is to dramatically reduce the CPU cost of common operations. However, it is still quite possible for wasteful code to blow out the CPU cost and end up running slowly and eating up a bunch of battery life. That is, even though the CPU and GPU can run concurrently, your GPU frames can't cycle any faster than the CPU workload required to encode / enqueue them. Thus, quite a lot of making Metal go fast can be making sure that your CPU workload isn't consuming all your time. For me, the CPU cost is usually around 10% or less of the GPU time in well behaved code. If you are running more than that, then you may need to spend some time finding out why.Most of the time, it comes down to object reuse. It is maybe the key way to improve Metal performance. Much of Metal is designed around the assumption that you will allocate expensive resources (textures, buffers, shaders, queues) up front and then reuse them. As an application writer, this is fairly simple, since
Topic: Graphics & Games SubTopic: General Tags:
Jun ’15
Reply to Requesting app back
Step 1: Contact a lawyer and have the lawyer initiate legal action.Step 2: Take judge's decision to Apple.Otherwise, you're expecting Apple to figure out whether you or the publisher are the legal owner of the application.P.S. You'll never guess the seven letter word beginning with l ending in t that shows up as ******** when typed into a response.
Jun ’15
News app got rejected because of source logo?
Hello everyone,I need your advice on an app being rejected.AppStore says: Your app contains content or features that may infringe on rights owned by various news and media outlets such as the BBC.Well obviously it is a news app, and I need to reference the source of my news, or I would violate copyright in first place.I double checked it and found this.http://www.bbc.co.uk/news/10628494We encourage the use of BBC News feeds as part of a website, however, we do require that the proper format and attribution is used when BBC News content appears. The attribution text should read BBC News or bbc.co.uk/news as appropriate. You may not use any BBC logo or other BBC trademark.Well, it seems app store is right about logos though. So I'm a bit confused.Do you know how news apps such as Flipboard handle this? Because they show the real logo of the news organizations.Many thanks for your advice,
2
0
790
Jun ’15
Reply to Can I AirDrop from one app to another?
I have set the UTI's for document types that my receiver app supports to include PNG files (public.png). When my receiver app is running, and my transmitter app is told to AirDrop a PNG to the receiver device, it appears as though iOS ignores my receiver app and opens Photos regardless; my receiver app should get the openURL: method called at the AppDelegate, but never does. In addition, the Open In... dialog never appears - the PNG file goes straight to Photos.If I specify a custom UTI, then my transmitter will only be able to broadcast to the receiver, which also has to know the custom UTI I've specified. Plus, I would have to change the file extension of the file the transmitter is sending to map the custom UTI to the file extension. This defeats the purpose of being able to transmit a PNG file as a PNG file.I can also transmit the file as raw data, which also defeats the purpose (and similarly requires a custom UTI).What I'm looking to discover is whether this behavior - iOS taking control of cer
Jun ’15
Reply to Converted 32bit to 64bit app Crashes
Yup, so the crash log isn't really useful on its own.I recommend you put breakpoints into your code, run it and step over line by line and see exactly the lines where it crashes. We can't do that for you, you have to do it. Have a look in the Apple debugger documentation if you don't know how to do it. In my experience, crashes in my code on arm64 have been regular bugs in the code that caused memory access issues that didn't crash on armv7 but do crash on arm64. But they were still bugs. In some situations they didn't crash on the simulators but do crash on real devices. Run using the debugger on real devices if you can.
Jun ’15