Je sais que les valeurs par défaut des propriétés IBInspectable peuvent être définies comme suit:
@IBInspectable var propertyName:propertyType = defaultValue
dans Swift. Mais comment puis-je obtenir un effet similaire dans Objective-C afin que je puisse avoir la valeur par défaut d'une propriété définie sur quelque chose dans Interface Builder?
Puisque IBInspectable
les valeurs sont définies après initWithCoder:
et avant awakeFromNib:
, vous pouvez définir les valeurs par défaut dans initWithCoder:
méthode.
@interface MyView : UIView
@property (copy, nonatomic) IBInspectable NSString *myProp;
@property (assign, nonatomic) BOOL createdFromIB;
@end
@implementation MyView
- (id)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if(self != nil) {
self.myProp = @"foo";
self.createdFromIB = YES;
}
return self;
}
- (void)awakeFromNib {
if (self.createdFromIB) {
//add anything required in IB-define way
}
NSLog(@"%@", self.myProp);
}
@end
J'ai écrit mon code comme ça. Cela fonctionne assez bien pour moi, à la fois lors de la conception dans le générateur d'interface ou de l'exécution en tant qu'application.
@interface MyView : UIView
@property (copy, nonatomic) IBInspectable propertyType *propertyName;
@end
- (void)makeDefaultValues {
_propertyName = defaultValue;
//Other properties...
}
- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
[self makeDefaultValues];
}
return self;
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder {
if (self = [super initWithCoder:aDecoder]) {
[self makeDefaultValues];
}
return self;
}
J'utilise comme ça
@IBInspectable var propertyNameValue:propertyType?
var propertyName:propertyType { return propertyNameValue ?? defaultValue }
si propertyNameValue
a nil
, propertyName
renverra defaultValue
.