Skip to main content
Filter by
Sorted by
Tagged with
4 votes
1 answer
161 views

I’m building a horizontal “carousel” style view in SwiftUI where items can be reordered by dragging (similar to an editor timeline). The basic idea: Items are laid out in a horizontal track inside a ...
Hector's user avatar
  • 3,651
2 votes
1 answer
92 views

I’m working with two iOS widgets (WidgetA and WidgetB) that both display the value of a flag stored in SwiftData. Each widget can update the flag by triggering an AppIntent when a button is pressed. ...
Petru Lutenco's user avatar
-1 votes
0 answers
117 views

After updating from iOS 26 to iOS 26.1, all my transparent system elements (i.e. UITabBar, UIBarButtonItem) started rendering with a dark background tint. In iOS 26 the same configuration looked fully ...
Krzysztof Orłowski's user avatar
0 votes
1 answer
56 views

I am trying to use the topEdgeEffect API in iOS 26, but even setting the effect style to ".soft" does not work: class ViewController: UIViewController { var scrollView: UIScrollView! ...
Hans Knöchel's user avatar
-2 votes
2 answers
72 views

I've inherited a GitHub job I don't understand well and that has stopped compiling. It creates a .a library for iOS. The source consists of a set of modules, each declared thus: export module x; ...
Imer Satz's user avatar
0 votes
1 answer
49 views

TL;DR: my app has some global alerts and modals (e.g. hints about trial limits, the in-app purchase screens, etc.) which should be available through out the app. In UIKit I could always present alerts ...
Andrei Herford's user avatar
0 votes
0 answers
70 views

How can I make the background of a ToolbarItemGroup clear with a glass (blur) effect in iOS 26? Is there a supported way to achieve this? I have tried to make the background clear but it didn't work ...
Mahmoud Abdelshafi's user avatar
0 votes
1 answer
58 views

import SwiftUI struct OnboardingView: View { @ObservedObject var viewModel: OnboardingViewModel var body: some View { TabView(selection: $viewModel.currentPage) ...
Dias Kaussov's user avatar
1 vote
1 answer
70 views

I have a SwiftUI view that switches between two completely different container layouts: a TabView layout (for compact width) a sidebar + content layout using HStack (for regular width). I am using a ...
Andrei Herford's user avatar
1 vote
0 answers
42 views

How can I make BGProcessingTask run consistently on TestFlight for a file-processing + background-upload workflow? Specifically: Is there a known issue or limitation with BGProcessingTask + ...
Architek Gyaan's user avatar
Tooling
0 votes
2 replies
76 views

I'm looking to develop a mobile application that sends recurring task reminders to users via scheduled local notifications at specific time intervals. (Like notification every 15 minutes) ​As a web ...
Jan Matějíček's user avatar
0 votes
0 answers
37 views

When I build react native app I see this error: Incompatible React versions: the react and react-native-renderer on iphone . and this is my package.json so, I need help in this case. This image ...
Maha Ahmed's user avatar
0 votes
0 answers
32 views

I'm encountering a critical issue after upgrading my React Native app to version 0.77.3. The iOS app builds successfully in Xcode but crashes immediately upon launch. The crash appears to be related ...
Ridwan Malik's user avatar
0 votes
0 answers
32 views

Launching lib/main.dart on iPhone 15 in debug mode... Xcode build done. 26.1s Failed to build iOS app Swift Compiler Error (Xcode): Expressions are not ...
Jainam Barbhaya's user avatar
-6 votes
0 answers
41 views

There's been a "bug" for years that un-read emails deleted on Apple Mail on iOS will show up in the Trash folder on MacOS as still being unread. It's like half the messages. Sometimes I can ...
Clif Watson's user avatar
0 votes
0 answers
25 views

I’m using NLTagger with the .sentimentScore tag scheme to analyze text sentiment. The setup is straightforward, and the code looks like this: import NaturalLanguage struct Scorer { let tagger = ...
Shubham B's user avatar
-1 votes
0 answers
20 views

I’m running into a crash when trying to sync cookies from my app to a WKWebView’s HTTPCookieStore. The crash happens at the setCookie call inside an async function. I’m not sure why it’s happening. ...
jieun's user avatar
  • 1
0 votes
1 answer
49 views

I have an iOS app with a WatchKit target (companion app). Both the iOS app and Watch app have the App Group capability enabled. I am trying to share data between the iOS app and Watch app using a ...
Muhammad Manzar's user avatar
0 votes
0 answers
21 views

Looks like that in recent releases, Apple removed MKPlacemark, which contained postalCode, address etc. So, now on iOS 26 how can I access postal code? struct Place { let latitude: Double ...
john doe's user avatar
  • 9,764
0 votes
0 answers
44 views

I’m trying to get Firebase email link sign-in working smoothly on iOS. The link users get in their email comes from projectname.firebaseapp.com/__/auth/links?link=..., which then redirects to my ...
Sindhu Satyanarayanan's user avatar
0 votes
0 answers
46 views

So i upgraded my expo app from 52 to 54 and now it wont build for simulators at all. I have tried, reinstalling, deleting all build files, clearing expo cache etc. It builds for my physical device ...
robo's user avatar
  • 119
0 votes
0 answers
29 views

wifi-aware has been introduced in iOS 26, but it seems that We can only use NetworkConnection to send data to the endpoint. I want to know that how we can send http over NetworkConnection? public ...
赵洪武's user avatar
0 votes
0 answers
23 views

Multiple commands produce '/Users/mac/Library/Developer/Xcode/DerivedData/APP_HaXi-fienhtgaztiojsagqgrzzowduwil/Build/Intermediates.noindex/ArchiveIntermediates/APP_HaXi/IntermediateBuildFilesPath/...
linxue165's user avatar
0 votes
0 answers
20 views

I’m trying to implement a button in my iOS app that sends the user directly to: Settings → Safari → Extensions Some other apps seem to briefly open the Shortcuts app and then jump to this exact Safari ...
김윤홍's user avatar
0 votes
0 answers
33 views

I’m using Google Sign-In in my Flutter app. Everything works perfectly on Android, but on iOS the app shows a completely white screen immediately after tapping the “Sign in with Google” button. There ...
Samyu Ram's user avatar