Search results for

“testflight the requested app is not avaliable”

416,680 results found

Post

Replies

Boosts

Views

Activity

Voice Over speed in swift
Hi, is there any way to get the current speed of the voice over speech in swift? I am developing an accessible app and I have to use AVSpeechSynthesizer in some cases, but I would want to set the same speech rate that voice over has set, or at least very similar. Thanks in advance!
0
0
366
Jun ’15
xcodebuild
I have a question regarding xcodebuild. I have created a static library and I want to build it and create my .a file without using Xcode. I run xcodebuild from the terminal and it runs without generating an error and tells me that the code is built but there are no files generated in product folder. Any thoughts?
1
0
976
Jun ’15
Generics in Cocoa and half-way bridging
The NSAttributedString(string:attributes:) constructor has been updated with generics in Swift 2.0 so that the attributes parameter is of the type [String : AnyObject]?However, this means that the following code doesn't work anymore: let font = CTFontCreateWithName(Monaco, 10, nil) let string = NSAttributedString(string: foo, attributes: [kCTFontAttributeName : font])The problem here is that kCTFontAttributeName has the type CFString, which is not automatically bridged to String, even though it's going to be immediately converted back to a CFString.The workaround is to convert it manually: let font = CTFontCreateWithName(Monaco, 10, nil) let string = NSAttributedString(string: foo, attributes: [String(kCTFontAttributeName) : font])
3
0
486
Jun ’15
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
2
0
1.9k
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
CardDAV doesn't work anymore
Hey there,I've upgraded from Yosemite to the Developer Preview 1. I'm synchronizing my contacts via CardDAV on an owncloud server.Since the upgrade it won't connect anymore. I tried to readd the account, but the system claims that the username and the password could not be validated (very clear error message!).Has anyone else this problem?
7
0
3.4k
Jun ’15
Reply to **Organizing an entire list of Unstable Apps**
Common sense is the rule.This is a developer forum.What is the value of this thread?Who would read it?Who would act on this?Who would check what others write are valid?There is no real conversation, this is a multithread.This is not against you, do not misunderstand.Basically any thread which is too broad, which describes dfferent problems, which cannot identify patterns, which does not bring us near to a resolution or workaround is useless.Most people value their time. See the problem -> find the resolution... Where do you find it here?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Pics Not Appearing in Friends and Contact Names Not In Messages
Dear all,I've the same problem, but I've found a radikal solution. I've reset the apple watch and pair it as new device to my iPhone 6 (not using the backup). After this new installation, my contacts, pictures and calender are fully functional.I hope it helps.Kind regards and have a nice dayCarsten
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Voice Over speed in swift
Hi, is there any way to get the current speed of the voice over speech in swift? I am developing an accessible app and I have to use AVSpeechSynthesizer in some cases, but I would want to set the same speech rate that voice over has set, or at least very similar. Thanks in advance!
Replies
0
Boosts
0
Views
366
Activity
Jun ’15
Reply to linker command failed with exit code 1 (use -v to see invocation)
Puh so you are trying to call it from the command shell? Have you made the Xcode7beta command line tools the active ones in Xcode? If not ld calls the old one from the prior Xcode version.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’15
xcodebuild
I have a question regarding xcodebuild. I have created a static library and I want to build it and create my .a file without using Xcode. I run xcodebuild from the terminal and it runs without generating an error and tells me that the code is built but there are no files generated in product folder. Any thoughts?
Replies
1
Boosts
0
Views
976
Activity
Jun ’15
Black screen on launch
When I power on my MacBook Pro, it just shows black screen. No Apple logo.
Replies
3
Boosts
0
Views
438
Activity
Jun ’15
Reply to Missing Apple News app
I think Apple News is not available worldwide, so maybe your country is not yet included. I also don't have it here in the Netherlands.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Generics in Cocoa and half-way bridging
The NSAttributedString(string:attributes:) constructor has been updated with generics in Swift 2.0 so that the attributes parameter is of the type [String : AnyObject]?However, this means that the following code doesn't work anymore: let font = CTFontCreateWithName(Monaco, 10, nil) let string = NSAttributedString(string: foo, attributes: [kCTFontAttributeName : font])The problem here is that kCTFontAttributeName has the type CFString, which is not automatically bridged to String, even though it's going to be immediately converted back to a CFString.The workaround is to convert it manually: let font = CTFontCreateWithName(Monaco, 10, nil) let string = NSAttributedString(string: foo, attributes: [String(kCTFontAttributeName) : font])
Replies
3
Boosts
0
Views
486
Activity
Jun ’15
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
Replies
2
Boosts
0
Views
1.9k
Activity
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:
Replies
Boosts
Views
Activity
Jun ’15
CardDAV doesn't work anymore
Hey there,I've upgraded from Yosemite to the Developer Preview 1. I'm synchronizing my contacts via CardDAV on an owncloud server.Since the upgrade it won't connect anymore. I tried to readd the account, but the system claims that the username and the password could not be validated (very clear error message!).Has anyone else this problem?
Replies
7
Boosts
0
Views
3.4k
Activity
Jun ’15
Where is Content Blocker Extensions documentation?
Hello,I'd love to start building something but can't find the documentation. Sample code I found isn't enough.
Replies
18
Boosts
0
Views
8.0k
Activity
Jun ’15
Can't add Apple pay card to wallet on watch
Hi Guys,I wanted to add a credit card to my Apple watch (which is already set up for Apple pay on my Phone).I go to the phone's Apple watch app -> Wallet (what used to be Passbook + Apple pay) - and ... no place to add a card for the watch.Anyone figured this one out?
Replies
3
Boosts
0
Views
2.0k
Activity
Jun ’15
Reply to **Organizing an entire list of Unstable Apps**
Common sense is the rule.This is a developer forum.What is the value of this thread?Who would read it?Who would act on this?Who would check what others write are valid?There is no real conversation, this is a multithread.This is not against you, do not misunderstand.Basically any thread which is too broad, which describes dfferent problems, which cannot identify patterns, which does not bring us near to a resolution or workaround is useless.Most people value their time. See the problem -> find the resolution... Where do you find it here?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to iOS 9 Beta battery life
This is Beta 1. It will improve in future builds, so try not to worry so much right now.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
Reply to Code redemption temporarily unavailable?
same error for me. Have tried logging in and out but no joy.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15