Skip to main content
0 votes
1 answer
79 views

I faced and issue with images using too much memory when running the app. A 905kb SVG image was taking around 150mb when presented and this image was being cached by the system. Loading several ...
Zyfe3r's user avatar
  • 663
4 votes
0 answers
1k views

Upgraded to Xcode 14.3 and now all my storyboards won't render IBDesignable's throwing an error: /Users/****/Documents/Projects/****/****/Modules/Onboarding/Base.lproj/Onboarding.storyboard Failed to ...
Simon McLoughlin's user avatar
1 vote
0 answers
99 views

it's first time for me to develop my own pod and i create a pod with an example to implement the pod, the pod is working great but i wanted that user to be able to init with coding or using Storyboard ...
belal medhat's user avatar
0 votes
1 answer
1k views

I am using Xcode 13.4.1 in Rosseta mode on Macbook Pro (M1 chip) running macOS Monterey v12.0. Basically, IBDesignable views are not getting updated in XIB and throwing weird errors. All the details ...
dev gr's user avatar
  • 2,440
0 votes
0 answers
326 views

The situation and steps to reliably reproduce: Set up a macOS app project with Swift and storyboards for UI in Xcode. Define an arbitrary color for the "AccentColor" color set in the asset ...
p13n's user avatar
  • 1,004
0 votes
1 answer
427 views

I have an existing App in the AppStore and I am building a POC AppClip for it. I have created the AppClip (using storyboards) and I am trying to reuse classes from the main App in Xcode. I have custom ...
AppDever's user avatar
  • 717
0 votes
1 answer
107 views

I have a custom designable view class that looks like this: @IBDesignable class AuthInputView: UIView { static let nibName = "AuthInputView" @IBOutlet weak var mainContainerView:...
Whirlwind's user avatar
  • 12.6k
0 votes
1 answer
111 views

I am developing a graphic library in Swift. The code cannot be shared, but I made a sample here (see the button example, Radio buttons were dedicated to another question). I would like to have a ...
Carl Sarkis's user avatar
2 votes
1 answer
117 views

I have a custom implementation of a checkbox / radio button in Swift. The class is annotated as @IBDesignable. I implement layoutSubviews and prepareForInterfaceBuilder. This implementation is ...
Carl Sarkis's user avatar
1 vote
1 answer
124 views

This is for macOS, not iOS ... thank you. I have a very simple custom slider control that has 2 @IBInspectable properties - trackHeight and knobHeight. I want my control's frame in Interface Builder ...
user avatar
5 votes
1 answer
868 views

I see a number of questions about this, but few answers (one answer solved a previous similar issue, but not this one). THE PROBLEM I have an IBDesignable class. It derives from UIControl, but the ...
Chris Marshall's user avatar
0 votes
0 answers
100 views

I am working on a framework project. I have added a custom view using IBDesignable in the framework (present within the framework under the same target). I am using the 'TinyConstraints' pod for ...
Anish Kumar's user avatar
1 vote
0 answers
243 views

I'm trying to create a UIView with this style: I made the circles using an @IBDesignable class, using the code in this answer: import UIKit @IBDesignable class CircleView: UIView { private var ...
Frakcool's user avatar
  • 11.2k
0 votes
1 answer
182 views

I have an external XIB that is @IBDesignable. Inside the view that shows this XIB, I have this outlet. @IBOutlet weak var digitizingButton: DigitizingButton! { didSet { digitizingButton....
Ronnie's user avatar
  • 372
0 votes
1 answer
100 views

I'm creating a custom IBDesignable control and I want to draw a set of squares in there. I have a draw(_ rect:) method which does the following: override func draw(_ rect: CGRect) { // ... ...
Alex Barinov's user avatar

15 30 50 per page
1
2 3 4 5
19