Search results for

show when run

112,671 results found

Post

Replies

Boosts

Views

Activity

Custom fonts disappears/unloads from Safari after a while
Hi,I'm troubleshooting a really weird problem with our web/custom fonts. We are using three fonts: (A) Aktiv Grotesk from TypeKit, (B) Font Awesome served from Amazon CloudFront, (C) Our own served from Amazon CloudFront. All fonts work great for the first couple of visits but after leaving Safari closed for some time (hours) and revisiting the site the fonts (A) and (B) are not loaded. (A) falls back to Helvetica and (B) bacomes squares.We've found this problem on multiple machines in Safari 8.0.6 and Yosemite 10.10.3. Not sure about the extent of the problem for other versions.How to reproduce:1. Load https://www.mentimeter.com/plans, notice that icons (like the checkmark) are there2. Close down Safari and leave it for some hours3. Open it a go to the URL in (1) again, now checkmarks should have become squares. Checking in inspector there are no errors or anything. They are just gone. Reloading the page doesn't work. To get them back one has to clear the cache and then reload. Any ideas how to troubleshoot
2
0
1.9k
Jun ’15
Reply to weather app on watchOS2
Same goes for me. On my iPhone, Weather shows up correctly, but on the Watch it says South Atlantic Ocean and doesn't give any information. Same goes for the Glance. However, when I ask Siri what's the weather like, she responds with the correct information.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Open-Sourcing Plan
Linux is probably the most versatile piece of software ever written. It runs on everything from battery-powered SOCs to data centers, powering huge amounts of our modern technology infrastructure as well as paving the way for us to get here in the first place. You can hack it on to an old iPod, or even household appliances like washing machines. And they've done it all without charging for their work.Any software engineer has to respect what they've accomplished and brought to the world. Even just the act of developing the project has led to amazing spinoff tools like Git.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to Is there any way to keep a watch app active in watchOS 2?
By the sounds of it yes!The HKWorkoutSession class describes the properties of a workout session. Workout sessions let apps continue to run in the foreground. The app appears whenever the user wakes the device, unless the user dismissed the app by pressing the crown. This lets the user check on the status of the workout by simply raising their wrist.https://developer.apple.com/library/prerelease/watchos/documentation/HealthKit/Reference/HKWorkoutSession_ClassReference/
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Swift 2.0 deployment target 7.1
I have a very small Swift 2.0 project which should run on 7.1 and newer.It should use WKWebView on iOS > 8.0 and UIWebView on iOS < 8.0.As soon as I add the WKWebView I can't compile the app again:import UIKit import WebKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() if #available(iOS 8.0, *) { let w = WKWebView() w.frame = self.view.frame w.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight] self.view.addSubview(w) } else { let w = UIWebView() w.frame = self.view.frame w.autoresizingMask = [UIViewAutoresizing.FlexibleWidth, UIViewAutoresizing.FlexibleHeight] self.view.addSubview(w) } } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } }When I compile for the simulator I have no problems at all, but when compiling for devices I get the following warning:ld: warning: URGENT: all bitcode will be dropped because '/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/D
5
0
3.0k
Jun ’15
Reply to iPad keeps rebooting when syncing apps
You are right - it is not rebooting, but I get the Apple-logo. For me it seems it is not doing any progress, but I will just have it running for some more hours to see.I also notice that though I have many dimmed apps on my iPad now there are still plenty of apps that are not even visible. I can see them while looking at my iPad apps in iTunes, but not (yet) on my iPad.Ok - patience now.... 🙂
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Problems with group insets on watchOS 1.0.1
I have rebuilt my app using XCode 7 and am testing that it works on my watch running watchOS 1.0.1 before I upgrade the device to version 2.0. Everything seems fine so far except that my groups do not have their custom insets (all zero) but instead have insets of 2. If I change the insets to larger values then it seems to work as expected, but not for zeroes.This works fine in the simulator (which runs 2.0) but not on the watch when running 1.0.1. I notice that the new API offers the ability to set the insets at runtime (which is very useful - thanks for that) so I'm wondering if this is related to that?Sounds like I need to file a bug report but I thought I'd mention it here in case anyone else notices that things are positioned strangely when running an app built with XCode 7 on a watch running 1.0.1.
0
0
254
Jun ’15
Reply to Future of Newsstand?
Can you elaborate on what they said again. I watched it but missed that and I'm at work and can't watch it. Meanwhile my client is flipping her lid because we've just ran a huge launch campaign for our Newsstand app, we have a truck load of subscribers and the positive feedback has been overwhelming. Some kind of answer to give to her would be great.If I suddenly have to scrap the whole thing and start again I'm not going to be happy. Hopefully there's be an easy migration process or something, but whatever happens I need to maintain my current subscribers and format. My client rejected a flipboard style curation app due to the fact that market research showed that our customers actually want a like for like digitial copy of our paper publication (which has been running since 1969 and has a traditional and somewhat cult following). Our customers love our app.I feel Apple have dropped the ball on this a little. Even a notification in the Newsstand tab of my App in iTunes Connect that points t
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15