Post

Replies

Boosts

Views

Activity

text editor & text field layout issue in list
I need use a built-in text editor, a custom text editor and a built-in text field in the same list. I encounter a couple of problems: set font to .body: The row height of custom text editor is bigger than the other two. The custom text editor can't stay in the center of the row by vertical. The text editor can't align to text field by leading. set font to .title: In addition to problem 1 behavior, the built-in text editor can't stay in the center of the row by vertical either. How could I make the three components to have the same row height and align center in vertical and align by leading? struct ContentView: View {     @State private var text = "hello"     @State private var text2 = ""     var body: some View {         List{             Section("title"){                 CustomTextEditor(text: $text)                 TextEditor(text: $text)                     .font(.title)                 TextField("hello", text: $text2)                     .font(.title)             }         }     } } struct CustomTextEditor: UIViewRepresentable{     @Binding var text: String          func makeUIView(context: Context) -> UITextView {         let textView = UITextView()         textView.isScrollEnabled = false         textView.font = UIFont.preferredFont(forTextStyle: .title1)         textView.text = text         return textView     }     func updateUIView(_ uiView: UITextView, context: Context) {              } }
0
0
640
Mar ’23
safe area includes notch?
I'm creating a launch screen by storyboard for a swiftui app. When I rotate the iPhone 14 to landscape, the safe area has insets on vertical, without any inset on horizontal(shown as the image below). IMO, the safe area should have inset on leading, trailing and bottom edge in this case. Do I miss anything?
2
0
1.5k
Mar ’23
Read image from asset catalog
I drag a image.jpg into the assets.xcassets. And I want to read the jpg data in my code by "var imageData = NSDataAsset(name: "image")?.data" However, I get an error: "CoreUI: attempting to lookup a named data 'image' with a type that is not a data type in the AssetCatalog". And "imageData" is always nil. Do I make a mistake or miss sth? Thanks in advance.
5
0
9.9k
Apr ’21
Protocol as return type
In swift language guide-"Opaque Types"-"Differences Between Opaque Types and Protocol Types", it said: "Another problem with this approach is that the shape transformations don’t nest. The result of flipping a triangle is a value of type Shape, and the protoFlip(:) function takes an argument of some type that conforms to the Shape protocol. However, a value of a protocol type doesn’t conform to that protocol; the value returned by protoFlip(:) doesn’t conform to Shape. This means code like protoFlip(protoFlip(smallTriange)) that applies multiple transformations is invalid because the flipped shape isn’t a valid argument to protoFlip(:)" I can't understand why it said"a value of a protocol type doesn’t conform to that protocol; the value returned by protoFlip(:) doesn’t conform to Shape". The return value must conform to Shape. It's a fundamental requirement by function signature, isn't it?
8
0
1.8k
May ’21
What's the difference between InlinePickerStyle and WheelPickerStyle
struct PickerStyleView: View {     @State private var num  =  0     var body: some View {         Form{             Text("Number")             Picker(String(num), selection: $num, content: {                                  Text("5").tag(5)                 Text("10").tag(10)                 Text("15").tag(15)                 Text("20").tag(20)             })             .pickerStyle(InlinePickerStyle())         }     } } Using InlinePickerStyle() and WheelPickerStyle() seems to be no difference. What does "InlinePickerStyle()" refer to? And which case is "InlinePickerStyle()" suitable for in practice? Any help will be appreciated.
1
0
763
Sep ’21
How to auto adjust the height of list row in edit mode?
I have a list. When I click the show button in any of rows, the long text appears and the height of row auto gets taller enough to show all of the long text. However, when the list is in "edit" mode, the height of row can't auto get taller enough to show all of the long text. The long text is truncated. I have to push the list to the top manually and release, then the height of row auto gets taller and the long text can be completely displayed again. Is there any way to achieve the "auto" adjustment effect just the same as the "non-edit" mode? struct ListEditTest: View { @State private var selects: Set<Int> = [] var body: some View { VStack{ EditButton() List(selection: $selects){ ForEach(1..<5){ ItemInList(num: $0) } } .listStyle(PlainListStyle()) } } } struct ItemInList: View{ let num: Int @State private var showDetail = false var body: some View{ HStack{ Text("NO.\(num)") Text("HelloWorld") if showDetail{ Text("TooManyWordsTooManyWordsTooManyWordsTooManyWordsTooManyWordsTooManyWordsTooManyWordsTooManyWords") Button { showDetail.toggle() } label: { Text("Hide") } }else{ Button { showDetail.toggle() } label: { Text("Show") } } } .buttonStyle(BorderlessButtonStyle()) } }
4
0
2.6k
Jun ’22
Reload images from PHPickerViewController
I'm writing an app which allow users to pick images from photo library by swiftUI. I wrap PHPickerViewController in representable to achieve the functionality. The benefit is that users don’t need to explicitly authorize my app to select photos. func picker(_ picker: PHPickerViewController, didFinishPicking results: [PHPickerResult]) Currently, I get images by picker(::) method above and save images in my app in order to reload images the next time users launch the app without needs to request authorization. Obviously, if the app stores references to the selected images, rather than images themselves, it can prevent from taking up large amounts of space. Is it meaning that I have to prompt to users for requesting authorization to access the library? Is there any approach only to use references and reload images which were selected by users previously from photo library using PHPickerViewController, supporting no need to request authorization.
1
0
1.6k
Nov ’22
how to make custom font to align in center of the frame
I need to use custom font in my app. While the built-in standard font will align in center automatically, the custom font seems to align "top"(seeing red border part) instead of "center"(blue border part). Is there any approach to fix it? struct ContentView: View { var body: some View { VStack(spacing: 20){ Text("SEPTEMBER") .font(.largeTitle) .border(.blue) Text("SEPTEMBER") .font(Font.custom("Arial Hebrew", size: 20)) .border(.red) } } }
2
0
1.3k
Mar ’23
legal font used in iOS app
[https://developer.apple.com/fonts/system-fonts/) shows dozens of system fonts. And it says "Apple platforms come with many preinstalled fonts that can be used by your app’s user interface. " on the top of the web page. Does it mean I can use any of them in my iOS app legally? Does it involve font license issue? What else should I pay attention to use system fonts legally?
1
0
837
Mar ’23
onTapGesture conflicts with button
I want to perform some code when the form is tapped. However the button in the form is affected by the onTapGesture either. I want the button tapped to execute the action block, not the onTapGesture block. How should I do? Thanks in advance. struct TextFieldPopupView: View {     @State private var text = ""     @State private var isON = false     var body: some View {         Form{             Text("Hello")             TextField("Hello", text: $text) .textFieldStyle(RoundedBorderTextFieldStyle())             Button(action: {                 print("Button")             }, label: {Text("Button")})             Toggle(isOn: $isON, label: {                 Text("Toggle")             })         }         .onTapGesture {             print("Form")         }     } }
2
1
6.2k
Jun ’21
"onTapGesture" interferes with segmented picker
struct ProblemSegmentTest: View {     @State private var select = 0     var body: some View {         VStack {             Picker("Test", selection: $select) {                 Text("A").tag(0)                 Text("B").tag(1)                 Text("C").tag(2)             }             .pickerStyle(SegmentedPickerStyle())         }         .onTapGesture {             print("test")         }     } } I want to do sth when the picker is taped. However, when I apply ".onTapGesture" to the vstack, the picker's options can't be selected any more. Any help will be appreciated.
5
1
1.9k
Oct ’21
pencil kit issue--drawing can't stay on canvas
I want to use pencil kit in my swiftui app. I encapsulate PKCanvasView in UIViewRepresentable. I can draw on canvas with only one stroke. However, the image will disappear immediately when I release the finger. Am I missing anything? import SwiftUI import PencilKit struct ContentView: View { var body: some View { CanvasView() } } struct CanvasView: UIViewRepresentable { func makeUIView(context: Context) -> PKCanvasView { let canvas = PKCanvasView() canvas.tool = PKInkingTool(.pen, color: .green, width: 10) canvas.drawingPolicy = .anyInput return canvas } func updateUIView(_ uiView: PKCanvasView, context: Context) { } }
1
1
1.2k
Dec ’22