Search results for

testflight the requested app is not avaliable

411,339 results found

Post

Replies

Boosts

Views

Activity

Reply to **Organizing an entire list of Unstable Apps**
If it is of no value to you it is of no value to others?What is the value of this thread? To see what works and what not.....Who would read it? I do ...and you just didWho would act on this? People who have one device only and might decide not to update to the beta (if their workflow is interrupted)Who would check what others write are valid? It's called feedback.. you say what you see ....i do too... and figure out why (it might be device specific and again people would know if their specific workflow might be affected)There is no real conversation, this is a multithread. Definetly not with that attitude, little miss sunshine the world does NOT revolve around you....... the sun raised even if you were asleep you know? 😉On topic ..1Password works here (iPhone 6 128 GB iOS 9 Beta 1)!
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/i
5
0
3.0k
Jun ’15
iCloud Photo library over cellular
When I'm connected to cellular and not WiFi my iCloud photo library doesn't download any thumbnails or higher resolution files.I have enabled cellular under preferences > cellular for the Photos app.When I enable Wifi, it works again. There is an exclamation icon at the bottom right of the photo when I'm over cellular, and nothing gets downloaded.I had this in iOS 8 and after upgrading to iOS 9 beta the problem is still there.
0
0
218
Jun ’15
Multitasking / Slide over / Split View in iOS 9
Hello,some aspects of these new features aren t really clear to me...- Is it mandatory to support Multitasking / Slide over / Split view? I read in the documentation, which says you should, Apple and users will expect you to... But in my case, my App UI is absolutely not designed to support it. My User Interface just needs the space, I can t shrink the UI to that compact size and dynamically size changing thing, I can t even support portrait on iPad, it s landscape only. So what will happen in iOS 9? If I do nothing, will my app just not work / not be selectable in this split view / Slide over mode? Or will the UI just be messed up? If I don t want / just can t because of UI design aspects support that Split view / Slide over feature, I could set a Boolean in Plist I read? but will this be approved or will I be forced to support it? I guess my app is not the only one that just does not work in that dynamically sizeable compact view Split
3
0
982
Jun ’15
Weak life cycle
I wrote a small class extension for UITableViewRowAction, while doing my Unit Test I've notice that the instance created with the extension 'init' method were alive longuer that I would have expected.So I've trim down the implementation to the bare minimum to test that difference.public extension UITableViewRowAction { public convenience init(title: String!, style: UITableViewRowActionStyle, exposedHandler: (UITableViewRowAction!, NSIndexPath!) -> Void) { self.init(style: style, title: title, handler: exposedHandler) } } class UITableViewRowAction_test: XCTestCase { func test_deallocationOfStoredItems() { weak var a1 : UITableViewRowAction? weak var a2 : UITableViewRowAction? if true { var action : UITableViewRowAction? action = UITableViewRowAction(title: title, style: .Normal) { (a: UITableViewRowAction!, b: NSIndexPath!) -> Void in } a1 = action action = UITableViewRowAction(style: .Normal, title: title, handler: { (a: UITableViewRowAction!, b: NSIndexPath!) -> Void in }) a2 = action println(here
0
0
256
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
Reply to Restore process to ios9 stuck at aprox 10%
Same issue here too.My device is an iPhone 6+.I tried 8.3 and 9.0 several times, including factory reset and update via ⎇+click in iTunes.What device do you have problems with? Have you tried a different mac (I'm preparing to do this now)?EDIT:I found some stuff on the console which might be interesting (I removed some IDs):09.06.15 13:21:35,831 iTunes[3009]: RPSocket.cpp:341(FinalizeRPSocket): Closed <RPSocket 0x610000430de0: Pinger-6b8b4567327b23c6643c9869 fd=-1> after reading 200 bytes and writing 66 bytes 09.06.15 13:21:35,940 iTunes[3009]: Socks5Server.c:204(srvSocketOpened): Successfully connected to gg.apple.com:80 09.06.15 13:21:35,940 iTunes[3009]: RPSocket.cpp:135(reset_stats): Reset stats for <RPSocket 0x61800043c040: Device-<SOME-DEVICE-ID> fd=56> after reading 157 bytes and writing 31 bytes 09.06.15 13:21:35,940 iTunes[3009]: RPSocket.cpp:676(RPSocketExchangeData): Beginning data exchange: <RPSocket 0x61800043c040: Device-<SOME-DEVICE-ID> fd=56> <==> <RPSock
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