Search results for

build disappears

50,286 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
417
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
495
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
214
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.6k
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
965
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
Are storyboard and UIKit due to disappear ?
I read in Xcode 15.2 release notes that @IBDesignable and @Inspectable are deprecated and will disappear in a future release. After the abandon of WatchKit and its storyboard, replaced by SwiftUI, does it mean storyboards (and consequently UIKit) will progressively disappear, leaving developers alone with SwiftUI to design apps (IMHO, inadequate to design complex UI: for instance, I always struggle to position precisely objects for all devices sizes as we miss constraints manager in SwiftUI) ? For sure, IBDesignable is (was) whimsical, but a very useful tool to design sophisticated UI. Replacing by #Preview does not make it. I also understand that Xcode is a very complex piece of code and that maintaining and evolving some tools (as IBDesignable) requires effort. But isn't it what we expect from Apple ? To provide us with the best tools and keep on the promise of WYSIWYG environments, all along ? Is it only me or do others share this view ?
2
0
2.8k
Dec ’23
App disappear after processing
Hi supporter,I'm have upload many times, with first 2times, have receive email with error missing description on info, but 5-10 nextime upload disappear after processing and didnt get any email status or missing error.Please help me double check that, it's urgent by me. Im have email to support but didnt any response.Im using xcode 11.Thank you very much.
4
0
899
Oct ’19