Search results for

build disappears

49,250 results found

Post

Replies

Boosts

Views

Activity

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
403
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
476
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
192
Feb ’25
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.5k
Feb ’16
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
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
952
Jan ’16
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
Tracking Usage Description Always Disappear
Hi Everybody! I need help about Tracking Transparency. I can add it, it work number one. But I don't know why, the key Privacy - traking Usage Description always disappear with some apps from info.plist. I always need to check if it still there before archive. It look like if it affect apps with multi-languages. I add it in info.plist, I test, all work fine, I archive, but Apple denied my app because it miss the privacy key. I go back in xcode and it mysteriously disappear. Someone can explain me why please??? Thank you for your help.
0
0
571
Apr ’22
Tiles disappear from SKTileMapNode when moving it
I am developing a game for IPhone and IPad and I have created a .sks file and edited it in the Tile Map Editor using a Tile Set. I am accessing the created tile map in a Sprite Kit Scene class as SKTileMapNode and then moving it to the left programmatically then creating a sidescroller game. The problem is however that when I run the game tiles disappear from the SKTileMapNode just before the map leaves the visible area of the screen. I have tried setting shouldCullNonVisibleNodes = false but it has no effect. Has anyone encountered similar problems?
1
0
641
Apr ’22