SCSS Speech Bubble

@mixin speech-bubble($size: 7, $border-color: #E0E8ED, $top: 15px, $border-width: 2) { border: 1px solid $border-color; border-radius: 8px; position: relative; margin-left: $size + ($border-width / 2); box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-right: …

Continuar lendo

Propriedades do Mixin em classes ObjC por meio do tempo de execução ObjC

// header@interface NSObject (PornName)@property (nonatomic, strong) NSString *pornName;@end// implementation#import <objc/runtime.h>static char const * const PornNameKey = “PornNameKey”;@implementation NSObject (PornName)@dynamic pornName;- (NSString *)pornName { return objc_getAssociatedObject(self, PornNameKey);}- (void)setPornName:(NSString *)pornName { objc_setAssociatedObject(self, …

Continuar lendo