Search results for

“build disappears”

51,299 results found

Post

Replies

Boosts

Views

Activity

Apps disappeared from the App Store Connect Apps list
Missing apps in the App Store Connect Apps. App Store Connect Apps list shows only Prepare for Submission apps and don't show those in Ready for Sale status and watchOS apps. They disappeared today (Feb 7, 2024). Disappeared apps could be opened by a direct link in format https://appstoreconnect.apple.com/apps/[app_id]/appstore/ios/version/deliverable
7
0
2.1k
Feb ’24
Storyboard objects disappear
Storyboard looks as designed when loading except will not render graphics. If I view a code and then return to storyboard all objects are there but invisible until I reload the project. I can reproduce this is a program that is a subset by changing the return of a method from an object containing a dictionary value to a number (Double), which then restores visibility. I hasve tried this with and without Auto Layout, without effect.I would appreciate any help
3
0
591
Jan ’17
Majority of apps disappeared
A couple of days after installing the beta, iPhone 7 Plus started strangely deleting apps. After a while only a handful were left. Of the default apps only notes was left. Safari, settings, phone... are all gone.I am on holiday trip without a laptop (or access to Apple care). Is there any way to get the phone working without computer/iTunes?THanks for your help in advance!
0
0
275
Jul ’17
12+ Apps Disappeared
I have two apps that are 12+, Spotify and Roblox, and yesterday, I noticed that they were gone from my Home Screen and App Library. They are still installed, but when I go on to the App Store, go on the app, and tap Open, I get a pop-up saying, “Restrictions Enabled—Certain apps, features, or services can't be seen or used when Restrictions are on. To use this app, turn Restrictions off.” But in fact, the age limit in my restrictions is set to 12+, so I don’t know why I can’t open them. I have the iPadOS 26 Developer Beta installed, and it’s an iPad (A16 model). Is the problem somehow related to the Beta? I posted this on in the Apple Support Community, but I got an email saying they deleted my post since it contained information about beta software.
1
0
250
Jul ’25
UISearchController in UITableViewController disappears
I'm using NSFetchedResultsController for the tableview display the results returned by Core Data.Use UISearchController to search. I have the following problem: sometimes, if I search while the tableView is being updated, the search bar disappears.The table view is in a navigation controller.- (void)viewDidLoad { [super viewDidLoad]; ... [self.view setMultipleTouchEnabled:NO]; [self.tableView setMultipleTouchEnabled:NO]; [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; [self.tableView setContentInset:UIEdgeInsetsMake(0, 0, 44, 0)]; _searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; self.searchController.searchResultsUpdater = self; self.searchController.delegate = self; self.searchController.dimsBackgroundDuringPresentation = NO; / self.searchController.hidesNavigationBarDuringPresentation = NO; [self.searchController.searchBar sizeToFit]; self.searchController.searchBar.delegate = self; / self.definesPresentationContext = YES; self.tableView.tableHeader
Topic: UI Frameworks SubTopic: UIKit Tags:
3
0
1.3k
Aug ’16
Game Center disappeared:(
Game Center used to be an application that just came with the phone but now it seems it's not. I want to add a friend to my account so we can play a game together but I can't figure out where Game Center is. :( Please help, Liv
1
0
2.1k
Dec ’17
navigationBarItems disappear in TabView
Hi,I have a view that has navigation bar items and I embed that view in a TabView. But when doing that, the bar items no longer appear. If I call the view outside of a TabView everything works as expected.Below a small sample project to illustrate my issue:// // ContentView.swift // TabView // // Created by Max on 2020-03-30. // Copyright © 2020 Max. All rights reserved. // import SwiftUI struct ContentView: View { var body: some View { NavigationView{ NavigationLink(destination: WarehouseOrderTabView()){ Text(Click me) } } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } struct WarehouseOrderTabView: View { var body: some View { TabView{ TabView1().navigationBarTitle(Dashboard) .tabItem { Image(systemName: gauge) Text(Dashboard) } TabView2().navigationBarTitle(Orders) .tabItem { Image(systemName: list.dash) Text(Orders) } } } } struct TabView1: View { var body: some View { Text(TabView 1) //I would expect to see those bar items when displaying tab 1 .navig
2
0
1.1k
Mar ’20
Reply to Missing "Download Size" column in "App Store File Sizes" in iTunes Connect
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Mar ’25
Navigation Disappears after Updating EnvObject
Xcode: Version 12.1 (12A7403) iOS: 14.x I have run into this weird bug where the navigation bar back button disappears when a child view updates the list used by the navigation view's root list. I've put together some MVP code to demo the bug: import SwiftUI class ItemStore: ObservableObject { @Published var items = [Int]() init(items: [Int]) { self.items = items} } struct ContentView: View { @EnvironmentObject var store: ItemStore var body: some View { NavigationView { List { ForEach(store.items, id: .self) { label in NavigationLink(destination: Child1(label: label)) { Text(String(label)) } } } } } } struct Child1: View { var label: Int var body: some View { List { NavigationLink(destination: Child2(label: label)) { Text(Child1: (label)) } } } } struct Child2: View { @EnvironmentObject var store: ItemStore var label: Int var body: some View { Text(Child2: (label)) .toolbar { Button(action: { let max = store.items.max() store.items.append(max == nil ? 1 : max! + 1) }) { Image(systemName: plus) } } }
2
0
2.8k
Oct ’20
Reply to Game Center invite fails immediately
We're seeing a similar problem with our custom UI invites to real time matches. We find that making arbitrary changes to the build version number can make the issue disappear/reappear. Have filed a radar: 26717939Perhaps as robatmac says, keeping the build and version numbers the same as the store build until right before the update might be the way to go. But making a last minute change that you know will break your dev build, then trusting that it'll magically be fixed by iTunesConnect after release makes me uncomfortable.
Topic: Graphics & Games SubTopic: GameKit Tags:
Jun ’16
Apps disappeared from the App Store Connect Apps list
Missing apps in the App Store Connect Apps. App Store Connect Apps list shows only Prepare for Submission apps and don't show those in Ready for Sale status and watchOS apps. They disappeared today (Feb 7, 2024). Disappeared apps could be opened by a direct link in format https://appstoreconnect.apple.com/apps/[app_id]/appstore/ios/version/deliverable
Replies
7
Boosts
0
Views
2.1k
Activity
Feb ’24
Storyboard objects disappear
Storyboard looks as designed when loading except will not render graphics. If I view a code and then return to storyboard all objects are there but invisible until I reload the project. I can reproduce this is a program that is a subset by changing the return of a method from an object containing a dictionary value to a number (Double), which then restores visibility. I hasve tried this with and without Auto Layout, without effect.I would appreciate any help
Replies
3
Boosts
0
Views
591
Activity
Jan ’17
Majority of apps disappeared
A couple of days after installing the beta, iPhone 7 Plus started strangely deleting apps. After a while only a handful were left. Of the default apps only notes was left. Safari, settings, phone... are all gone.I am on holiday trip without a laptop (or access to Apple care). Is there any way to get the phone working without computer/iTunes?THanks for your help in advance!
Replies
0
Boosts
0
Views
275
Activity
Jul ’17
Folder on homescreen disappears
When rearranging the home screen and subsequent pages, folders containing apps will spontaneously vanish, leaving the app icons on the pages. It may be related to widgets moving on the page.
Replies
0
Boosts
0
Views
332
Activity
May ’23
12+ Apps Disappeared
I have two apps that are 12+, Spotify and Roblox, and yesterday, I noticed that they were gone from my Home Screen and App Library. They are still installed, but when I go on to the App Store, go on the app, and tap Open, I get a pop-up saying, “Restrictions Enabled—Certain apps, features, or services can't be seen or used when Restrictions are on. To use this app, turn Restrictions off.” But in fact, the age limit in my restrictions is set to 12+, so I don’t know why I can’t open them. I have the iPadOS 26 Developer Beta installed, and it’s an iPad (A16 model). Is the problem somehow related to the Beta? I posted this on in the Apple Support Community, but I got an email saying they deleted my post since it contained information about beta software.
Replies
1
Boosts
0
Views
250
Activity
Jul ’25
UISearchController in UITableViewController disappears
I'm using NSFetchedResultsController for the tableview display the results returned by Core Data.Use UISearchController to search. I have the following problem: sometimes, if I search while the tableView is being updated, the search bar disappears.The table view is in a navigation controller.- (void)viewDidLoad { [super viewDidLoad]; ... [self.view setMultipleTouchEnabled:NO]; [self.tableView setMultipleTouchEnabled:NO]; [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; [self.tableView setContentInset:UIEdgeInsetsMake(0, 0, 44, 0)]; _searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; self.searchController.searchResultsUpdater = self; self.searchController.delegate = self; self.searchController.dimsBackgroundDuringPresentation = NO; / self.searchController.hidesNavigationBarDuringPresentation = NO; [self.searchController.searchBar sizeToFit]; self.searchController.searchBar.delegate = self; / self.definesPresentationContext = YES; self.tableView.tableHeader
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
3
Boosts
0
Views
1.3k
Activity
Aug ’16
Game Center disappeared:(
Game Center used to be an application that just came with the phone but now it seems it's not. I want to add a friend to my account so we can play a game together but I can't figure out where Game Center is. :( Please help, Liv
Replies
1
Boosts
0
Views
2.1k
Activity
Dec ’17
ContentView's Canvas disappeared
Hello all! My Xcode Version 12.0 (12A7209) and MacOS Catalina 10.15.6 (MacBook Pro Retina, 13-inch, Late 2013) ContentView.swift's canvas is invisible although it is open in editor. I checked all options and they all ok. What is problem here? is it bug or am I missing something?
Replies
2
Boosts
0
Views
2.7k
Activity
Oct ’20
UIView Border Disappears
I am trying to add a border around a AVCaptureVideoPreviewLayer, but the left and right sides of the border get clipped after setting the corner radius to anything above 24. The top and bottom border show. I cannot figure out an explanation for this.
Replies
2
Boosts
0
Views
1.2k
Activity
Dec ’20
navigationBarItems disappear in TabView
Hi,I have a view that has navigation bar items and I embed that view in a TabView. But when doing that, the bar items no longer appear. If I call the view outside of a TabView everything works as expected.Below a small sample project to illustrate my issue:// // ContentView.swift // TabView // // Created by Max on 2020-03-30. // Copyright © 2020 Max. All rights reserved. // import SwiftUI struct ContentView: View { var body: some View { NavigationView{ NavigationLink(destination: WarehouseOrderTabView()){ Text(Click me) } } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } struct WarehouseOrderTabView: View { var body: some View { TabView{ TabView1().navigationBarTitle(Dashboard) .tabItem { Image(systemName: gauge) Text(Dashboard) } TabView2().navigationBarTitle(Orders) .tabItem { Image(systemName: list.dash) Text(Orders) } } } } struct TabView1: View { var body: some View { Text(TabView 1) //I would expect to see those bar items when displaying tab 1 .navig
Replies
2
Boosts
0
Views
1.1k
Activity
Mar ’20
Reply to Missing "Download Size" column in "App Store File Sizes" in iTunes Connect
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Replies
Boosts
Views
Activity
Mar ’25
Navigation Disappears after Updating EnvObject
Xcode: Version 12.1 (12A7403) iOS: 14.x I have run into this weird bug where the navigation bar back button disappears when a child view updates the list used by the navigation view's root list. I've put together some MVP code to demo the bug: import SwiftUI class ItemStore: ObservableObject { @Published var items = [Int]() init(items: [Int]) { self.items = items} } struct ContentView: View { @EnvironmentObject var store: ItemStore var body: some View { NavigationView { List { ForEach(store.items, id: .self) { label in NavigationLink(destination: Child1(label: label)) { Text(String(label)) } } } } } } struct Child1: View { var label: Int var body: some View { List { NavigationLink(destination: Child2(label: label)) { Text(Child1: (label)) } } } } struct Child2: View { @EnvironmentObject var store: ItemStore var label: Int var body: some View { Text(Child2: (label)) .toolbar { Button(action: { let max = store.items.max() store.items.append(max == nil ? 1 : max! + 1) }) { Image(systemName: plus) } } }
Replies
2
Boosts
0
Views
2.8k
Activity
Oct ’20
Reply to Game Center invite fails immediately
We're seeing a similar problem with our custom UI invites to real time matches. We find that making arbitrary changes to the build version number can make the issue disappear/reappear. Have filed a radar: 26717939Perhaps as robatmac says, keeping the build and version numbers the same as the store build until right before the update might be the way to go. But making a last minute change that you know will break your dev build, then trusting that it'll magically be fixed by iTunesConnect after release makes me uncomfortable.
Topic: Graphics & Games SubTopic: GameKit Tags:
Replies
Boosts
Views
Activity
Jun ’16
In-App purchase buttons disappeared when App published on iTunes
My App just launched on iTunes... but the in-app purchase buttons disappeared from the app. They worked great in TestFlight... did it happen to anyone ? I'm stuck because people will are able to download the app but not subscribe !
Replies
2
Boosts
0
Views
280
Activity
Dec ’16
Xcode: “Hide Navigator” ⌘, 0 stopped working. Why did it disappear?
In Xcode, there is a keyboard shortcut to hide the navigator, ⌘,0. But it stopped working. I went to system preferences and manually added it back a few days ago but it disappeared again today suddenly. Why does this keep happening?
Replies
3
Boosts
0
Views
2.2k
Activity
Dec ’20