I'm wondering what's the name of the draggable menu at the bottom of the iOS map. (See picture :) I want to implement the same kind of interface for my app.
I'm trying to create an internal function for the String class to get only AlphaNumeric characters and return a string. I'm running into a few errors with how t
I am trying to change a user's attribute (i.e family name) after they have signed up. This is an attribute that has been selected in the cognito user pool and w
I followed a tutorial on getting Url from a Document a user chooses and be able to display it on the View. My problem now is I want to add those Url's into an a
I am having problems to translate UIKit architecture patterns to SwiftUI. My current pattern is mostly MVVM with Coordinators/Routers. The MVVM part seems quite
This error always happens whenever I add a new Package via Swift Package Manager in Xcode: Cannot fetch library I've already configured my GitHub Auth Token
I found a solution to manually set light/dark mode in a swiftui app in another thread found here https://stackoverflow.com/a/58476468/11698443 it mostly works,
I'm creating an app with Swift 5 and SwiftUI. The application runs as a status bar app (LSUIElement is true). I've created a simple preferences window with Swif
I need to multiply an array by another array element-wise, just like the Hadamard product of vectors in math. For example: A = [1,2,3,4] B = [2,3,4,5] C = A*B
I'm doing pagination using UITableViewDataSourcePrefetching. The values will be taken from the Realm local storage. I will get an array of objects. These values
For some reason I can't get people occlusion to work, even though I looked at someone's question on Stackoverflow. Here is my code: //Load ARView let arView =
I have a ShareExtension in my iOS app. I am trying to use Suggestions. I can successfully 'donate' the intent using the following code from the apple develope
@State and @Binding work so well in SwiftUI, as long as you put all the view's data inside itself, like this: struct ColorView: View { @Binding public var
I understand bitmap layout and pixel format subject pretty well, but getting an issue when working with png / jpeg images loaded through NSImage – I can't
I have the following view. import SwiftUI struct AppView: View { @EnvironmentObject var appStore: AppStore var body: some View { ZStack {
I have a view which uses Geometry Reader to calculate how large the image area should be: GeometryReader { metrics in ZStack{ self.image
I'm trying to make a hexagon grid with triangles without altering any pivot points, but I can't seem to position the triangles correctly to make single hexagon.
var mentions = ["@alex", "@jason", "@jessica", "@john"] I want to limit my array to 3 items, so I want to splice it: var slice = [String]() if mentions.count
I'm running into an issue that has me rather puzzled. I have a UIView in Xcode with a ScrollView inside of it. I also have a UIView inside the ScrollView that I
Is there a way to get All of the different UTType extension types as Strings? I need them specifically for images, audio, and video. I followed this answer, but