Search results for

“build disappears”

51,289 results found

Post

Replies

Boosts

Views

Activity

Reply to Testflight Build missing
Same here. Sent a build (number 22) and it uploaded successfully and was processing. This morning got up and saw that it's gone. Tried uploading it again but it is rejected by saying build 22 is already uploaded. Then bumbed build to 23, uploaded again. Processing, and when processing is completed it disappeared too.
Jun ’19
Subscribed Calendar Disappears After A Few Days
I have developed an app that has a feature to add subscribed calendar to a user's Calendar App. I have successfully added the calendar contents to a user's Calendar App. However, after a couple days the calendar disappears. I am not calling any of the delete calendar functions the EventKit supplies. Is there anything I am missing when creating the calendar such as the a persisted duration? Is there any other way the Subscribed calendar would disappear on a user's account?
0
0
426
May ’17
Make the playbar disappear on a background video
I'm trying to put a video in the background with swifui 2 and IOS 14 My goal is for the bar with the play button to disappear completely. Normally with .disabled (true) the bar should disappear but this is not the case it is always present at the start of the video and disappears about 1 sec after the start of playback. where is my error in my code? What I have done import SwiftUI import AVKit struct TestBackground: View { ttprivate let player =tAVPlayer(url: URL(string: https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8)!) ttprivate let controler = AVPlayerViewController() ttinit() { ttttlet control = AVPlayerViewController() ttttcontrol.showsPlaybackControls = true tt} ttvar body: some View { ttt ttttttttttVideoPlayer(player: player) tttttttttttt tttttttttttt.aspectRatio(contentMode: .fill) tttttttttttt.edgesIgnoringSafeArea(.all) tttttttttttt.disabled(true) tttttttttttt.onAppear() { tttttttttttttt ttttttttttttttplayer.isMuted = true ttttttttttttttplayer.play() tttttt
1
0
500
Dec ’20
Control Center Widget icon disappear occasionally
Hi folks, We are trying to develop a widget on iPhone control center. We follow the Apple design guideline to export our resource file using custom icon and the button icon always show on debug build. However, when we deploy to TestFlight, under some scenario, such as app upgrade, we found that the icon image disappear occasionally. Anyone could help? Thank you in advance!
1
0
227
Feb ’25
SwiftUI - View disappears if animated
I have asked this question on stack overflow. You may read it there, because I have included 2 GIFs that illustrates the problem. I am building a custom segmented control. This is the code that I have written. struct SegmentedControl: View { ttprivate var items: [String] = [One, Two, Three] tt @Namespace var animation:Namespace.ID @State var selected: String = One var body: some View { ScrollView(.horizontal) { HStack { ForEach(items, id: .self) { item in Button(action: { withAnimation(.spring()){ self.selected = item } }) { Text(item) .font(Font.subheadline.weight(.medium)) .foregroundColor(selected == item ? .white : .accentColor) .padding(.horizontal, 25) .padding(.vertical, 10) .background(zStack(item: item)) } } } .padding() } } private func zStack(item: String) -> some View { ZStack{ if selected == item { Color.accentColor .clipShape(Capsule()) .matchedGeometryEffect(id: Tab, in: animation) } else { Color(.gray) .clipShape(Capsule()) }} } } A control is Blue when it is selected. However, som
0
0
1.1k
Dec ’20
Some but not all GKTurnBasedMatches disappeared
I have an iOS turn-based match game. Recently, I've had some matches on game center disappear. It's about one in six with no rhyme or reason. GKTurnBasedMatch.loadMatchesWithCompletionHandler fetches Game Center matches successfully, but a few of my ongoing or old matches are no longer there. However, when I go to the separate Game Center app and look at my Turns, I can see the missing matches there. Has anyone else seen this issue?
8
0
1.6k
Feb ’16
Scene content disappears in the editor
Hello fellow developers!Very frequently I have this issue: after returning to the scene editor tab in Xcode all the content disappears from the scene.Steps to Reproduce:1. Open SpriteKit project with SKS file in it. Put something into the file2. Go to another tab, switch back. Repeat one or few times if needed.3. See the empty scene, nodes are all lost.Does anybody else have it? Any tips to get rid of this annoying bug?
10
0
974
Jan ’16
ScreenCapture permissions disappear and don't return
On Tahoe and earlier, ScreenCapture permissions can disappear and not return. Customers are having an issue with this disappearing and when our code executes CGRequestScreenCaptureAccess() nothing happens, the prompt does not appear. I can reproduce this by using the - button and removing the entry in the settings, then adding it back with the + button. CGPreflightScreenCaptureAccess() always returns the correct value but once the entry has been removed, CGRequestScreenCaptureAccess() requires a reboot before it will work again.
3
0
319
3w
Game Disappeared From Game Center
I have a tvOS App (Destin's Destiny) in the tvOS App Store that has Game Center support. Overnight it removed itself from my Game Center apps on OS X and iOS. I can still get my high score in the app though. Has anyone had their leaderboards/achievements disappear from the Game Center apps before?
3
0
1.5k
Nov ’15
disappear title in UIButton when you choose image
When choose image of button, disappear the title, but if image 100x100 it`s ok, but i have picture 267x168, when can in do?
Replies
1
Boosts
0
Views
970
Activity
Feb ’18
Reply to Testflight Build missing
Same here. Sent a build (number 22) and it uploaded successfully and was processing. This morning got up and saw that it's gone. Tried uploading it again but it is rejected by saying build 22 is already uploaded. Then bumbed build to 23, uploaded again. Processing, and when processing is completed it disappeared too.
Replies
Boosts
Views
Activity
Jun ’19
Subscribed Calendar Disappears After A Few Days
I have developed an app that has a feature to add subscribed calendar to a user's Calendar App. I have successfully added the calendar contents to a user's Calendar App. However, after a couple days the calendar disappears. I am not calling any of the delete calendar functions the EventKit supplies. Is there anything I am missing when creating the calendar such as the a persisted duration? Is there any other way the Subscribed calendar would disappear on a user's account?
Replies
0
Boosts
0
Views
426
Activity
May ’17
iOS 18 Options for Beta disappeared
I was on PB5, then options for Betas disappeared at some point. I tried logging in and out but it did not solve the issue.. Any ideas what to do?
Replies
0
Boosts
0
Views
302
Activity
Sep ’24
Make the playbar disappear on a background video
I'm trying to put a video in the background with swifui 2 and IOS 14 My goal is for the bar with the play button to disappear completely. Normally with .disabled (true) the bar should disappear but this is not the case it is always present at the start of the video and disappears about 1 sec after the start of playback. where is my error in my code? What I have done import SwiftUI import AVKit struct TestBackground: View { ttprivate let player =tAVPlayer(url: URL(string: https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8)!) ttprivate let controler = AVPlayerViewController() ttinit() { ttttlet control = AVPlayerViewController() ttttcontrol.showsPlaybackControls = true tt} ttvar body: some View { ttt ttttttttttVideoPlayer(player: player) tttttttttttt tttttttttttt.aspectRatio(contentMode: .fill) tttttttttttt.edgesIgnoringSafeArea(.all) tttttttttttt.disabled(true) tttttttttttt.onAppear() { tttttttttttttt ttttttttttttttplayer.isMuted = true ttttttttttttttplayer.play() tttttt
Replies
1
Boosts
0
Views
500
Activity
Dec ’20
Control Center Widget icon disappear occasionally
Hi folks, We are trying to develop a widget on iPhone control center. We follow the Apple design guideline to export our resource file using custom icon and the button icon always show on debug build. However, when we deploy to TestFlight, under some scenario, such as app upgrade, we found that the icon image disappear occasionally. Anyone could help? Thank you in advance!
Replies
1
Boosts
0
Views
227
Activity
Feb ’25
URL disappears after 3 characters
When I enter esd in the URL bar of Safari, it suggests the URL esdipherecoordi.info and then it disappears completely.What is this? I can't find much about esdipherecoordi.info.
Replies
0
Boosts
0
Views
522
Activity
Feb ’20
SwiftUI - View disappears if animated
I have asked this question on stack overflow. You may read it there, because I have included 2 GIFs that illustrates the problem. I am building a custom segmented control. This is the code that I have written. struct SegmentedControl: View { ttprivate var items: [String] = [One, Two, Three] tt @Namespace var animation:Namespace.ID @State var selected: String = One var body: some View { ScrollView(.horizontal) { HStack { ForEach(items, id: .self) { item in Button(action: { withAnimation(.spring()){ self.selected = item } }) { Text(item) .font(Font.subheadline.weight(.medium)) .foregroundColor(selected == item ? .white : .accentColor) .padding(.horizontal, 25) .padding(.vertical, 10) .background(zStack(item: item)) } } } .padding() } } private func zStack(item: String) -> some View { ZStack{ if selected == item { Color.accentColor .clipShape(Capsule()) .matchedGeometryEffect(id: Tab, in: animation) } else { Color(.gray) .clipShape(Capsule()) }} } } A control is Blue when it is selected. However, som
Replies
0
Boosts
0
Views
1.1k
Activity
Dec ’20
Reply to iOS builds stuck in Processing mode / app store connect
well finally started working the other day, now the issue again: builds go up, but don't even show up in Processing (they just disappear)
Replies
Boosts
Views
Activity
May ’20
Some but not all GKTurnBasedMatches disappeared
I have an iOS turn-based match game. Recently, I've had some matches on game center disappear. It's about one in six with no rhyme or reason. GKTurnBasedMatch.loadMatchesWithCompletionHandler fetches Game Center matches successfully, but a few of my ongoing or old matches are no longer there. However, when I go to the separate Game Center app and look at my Turns, I can see the missing matches there. Has anyone else seen this issue?
Replies
8
Boosts
0
Views
1.6k
Activity
Feb ’16
The monitor's brightness adjustment option has disappeared
The monitor's brightness adjustment option has disappeared after the last update 11.3.When will this be repaired?
Replies
3
Boosts
0
Views
485
Activity
May ’21
Scene content disappears in the editor
Hello fellow developers!Very frequently I have this issue: after returning to the scene editor tab in Xcode all the content disappears from the scene.Steps to Reproduce:1. Open SpriteKit project with SKS file in it. Put something into the file2. Go to another tab, switch back. Repeat one or few times if needed.3. See the empty scene, nodes are all lost.Does anybody else have it? Any tips to get rid of this annoying bug?
Replies
10
Boosts
0
Views
974
Activity
Jan ’16
ScreenCapture permissions disappear and don't return
On Tahoe and earlier, ScreenCapture permissions can disappear and not return. Customers are having an issue with this disappearing and when our code executes CGRequestScreenCaptureAccess() nothing happens, the prompt does not appear. I can reproduce this by using the - button and removing the entry in the settings, then adding it back with the + button. CGPreflightScreenCaptureAccess() always returns the correct value but once the entry has been removed, CGRequestScreenCaptureAccess() requires a reboot before it will work again.
Replies
3
Boosts
0
Views
319
Activity
3w
If Layer's Speed Is Negative, The Layer Disappeared
If a CABasicAnimation object has negative speed, it will animate back-ward. However, if I set the layer's speed to negative, the layer disappeared. Can anyone please explain what happens? Thanks
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
358
Activity
Mar ’17
Game Disappeared From Game Center
I have a tvOS App (Destin's Destiny) in the tvOS App Store that has Game Center support. Overnight it removed itself from my Game Center apps on OS X and iOS. I can still get my high score in the app though. Has anyone had their leaderboards/achievements disappear from the Game Center apps before?
Replies
3
Boosts
0
Views
1.5k
Activity
Nov ’15