I'm trying to create a NSLabel for my osx app however Xcode is not recognizing the type "NSLabel" as valid and is suggesting I try "NSPanel" instead.
In the header file I have the following imports:
#import <Cocoa/Cocoa.h>
#import <AppKit/AppKit.h>
How do I fix this? Is there another file I need to import?
open class NSLabel: NSTextField {
override init(frame frameRect: NSRect) {
super.init(frame: frameRect)
self.isBezeled = false
self.drawsBackground = false
self.isEditable = false
self.isSelectable = false
}
}
There is no label class (NSLabel
) on OS X. You have to use NSTextField
instead, remove the bezel and make it non editable:
[textField setBezeled:NO];
[textField setDrawsBackground:NO];
[textField setEditable:NO];
[textField setSelectable:NO];
I had the same question, following DrummerB advice I created this NSLabel
class.
//
// NSLabel.h
//
// Created by Axel Guilmin on 11/5/14.
//
#import <AppKit/AppKit.h>
@interface NSLabel : NSTextField
@property (nonatomic, assign) CGFloat fontSize;
@property (nonatomic, strong) NSString *text;
@end
//
// NSLabel.m
//
// Created by Axel Guilmin on 11/5/14.
//
#import "NSLabel.h"
@implementation NSLabel
#pragma mark INIT
- (instancetype)init {
self = [super init];
if (self) {
[self textFieldToLabel];
}
return self;
}
- (instancetype)initWithFrame:(NSRect)frameRect {
self = [super initWithFrame:frameRect];
if (self) {
[self textFieldToLabel];
}
return self;
}
- (instancetype)initWithCoder:(NSCoder *)coder {
self = [super initWithCoder:coder];
if (self) {
[self textFieldToLabel];
}
return self;
}
#pragma mark SETTER
- (void)setFontSize:(CGFloat)fontSize {
super.font = [NSFont fontWithName:self.font.fontName size:fontSize];
}
- (void)setText:(NSString *)text {
[super setStringValue:text];
}
#pragma mark GETTER
- (CGFloat)fontSize {
return super.font.pointSize;
}
- (NSString*)text {
return [super stringValue];
}
#pragma mark - PRIVATE
- (void)textFieldToLabel {
super.bezeled = NO;
super.drawsBackground = NO;
super.editable = NO;
super.selectable = YES;
}
@end
You'll need to #import "NSLabel.h"
to use it, but I think it's more clean.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With