Convert UILabel subclass from Objective-C to Swift





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















how do i convert the following subclass code into swift 3.1.1
I've tried to convert myself but i get too many errors



#import <UIKit/UIKit.h>

@interface myTextLabels : UILabel


@property (nonatomic) IBInspectable NSString *overrideFontName;
@property (nonatomic) IBInspectable CGFloat iphoneFontSize;
@property (nonatomic) IBInspectable CGFloat ipadFontSize;
@end

#import "myTextLabels.h"

@implementation myTextLabels

- (void)setOverrideFontName:(NSString *)overrideFontName
{
if (![_overrideFontName isEqualToString:overrideFontName])
{
_overrideFontName = overrideFontName;

self.font = self.font;
}
}

- (void)setFont:(UIFont *)font
{
NSString *overrideFontName = self.overrideFontName;
if (overrideFontName != nil)
{
font = [UIFont fontWithName:overrideFontName size:font.pointSize];
}

[super setFont:font];
}

@end


tried various things but too many errors
here my attempt



import Foundation
import UIKit

class myTextLabel:UILabel{

@IBInspectable var overrideFontName: String = ""
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

func setOverrideFontName(_ overrideFontName: String) {
if !(self.overrideFontName == overrideFontName) {
self.overrideFontName = overrideFontName
font = font
}
}

func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}

}









share|improve this question

























  • What errors do you get?

    – Fogmeister
    Sep 5 '17 at 13:23











  • Method 'setOverrideFontName' with Objective-C selector 'setOverrideFontName:' conflicts with setter for 'overrideFontName' with the same Objective-C selector

    – Superllanboy
    Sep 5 '17 at 14:54


















1















how do i convert the following subclass code into swift 3.1.1
I've tried to convert myself but i get too many errors



#import <UIKit/UIKit.h>

@interface myTextLabels : UILabel


@property (nonatomic) IBInspectable NSString *overrideFontName;
@property (nonatomic) IBInspectable CGFloat iphoneFontSize;
@property (nonatomic) IBInspectable CGFloat ipadFontSize;
@end

#import "myTextLabels.h"

@implementation myTextLabels

- (void)setOverrideFontName:(NSString *)overrideFontName
{
if (![_overrideFontName isEqualToString:overrideFontName])
{
_overrideFontName = overrideFontName;

self.font = self.font;
}
}

- (void)setFont:(UIFont *)font
{
NSString *overrideFontName = self.overrideFontName;
if (overrideFontName != nil)
{
font = [UIFont fontWithName:overrideFontName size:font.pointSize];
}

[super setFont:font];
}

@end


tried various things but too many errors
here my attempt



import Foundation
import UIKit

class myTextLabel:UILabel{

@IBInspectable var overrideFontName: String = ""
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

func setOverrideFontName(_ overrideFontName: String) {
if !(self.overrideFontName == overrideFontName) {
self.overrideFontName = overrideFontName
font = font
}
}

func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}

}









share|improve this question

























  • What errors do you get?

    – Fogmeister
    Sep 5 '17 at 13:23











  • Method 'setOverrideFontName' with Objective-C selector 'setOverrideFontName:' conflicts with setter for 'overrideFontName' with the same Objective-C selector

    – Superllanboy
    Sep 5 '17 at 14:54














1












1








1


1






how do i convert the following subclass code into swift 3.1.1
I've tried to convert myself but i get too many errors



#import <UIKit/UIKit.h>

@interface myTextLabels : UILabel


@property (nonatomic) IBInspectable NSString *overrideFontName;
@property (nonatomic) IBInspectable CGFloat iphoneFontSize;
@property (nonatomic) IBInspectable CGFloat ipadFontSize;
@end

#import "myTextLabels.h"

@implementation myTextLabels

- (void)setOverrideFontName:(NSString *)overrideFontName
{
if (![_overrideFontName isEqualToString:overrideFontName])
{
_overrideFontName = overrideFontName;

self.font = self.font;
}
}

- (void)setFont:(UIFont *)font
{
NSString *overrideFontName = self.overrideFontName;
if (overrideFontName != nil)
{
font = [UIFont fontWithName:overrideFontName size:font.pointSize];
}

[super setFont:font];
}

@end


tried various things but too many errors
here my attempt



import Foundation
import UIKit

class myTextLabel:UILabel{

@IBInspectable var overrideFontName: String = ""
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

func setOverrideFontName(_ overrideFontName: String) {
if !(self.overrideFontName == overrideFontName) {
self.overrideFontName = overrideFontName
font = font
}
}

func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}

}









share|improve this question
















how do i convert the following subclass code into swift 3.1.1
I've tried to convert myself but i get too many errors



#import <UIKit/UIKit.h>

@interface myTextLabels : UILabel


@property (nonatomic) IBInspectable NSString *overrideFontName;
@property (nonatomic) IBInspectable CGFloat iphoneFontSize;
@property (nonatomic) IBInspectable CGFloat ipadFontSize;
@end

#import "myTextLabels.h"

@implementation myTextLabels

- (void)setOverrideFontName:(NSString *)overrideFontName
{
if (![_overrideFontName isEqualToString:overrideFontName])
{
_overrideFontName = overrideFontName;

self.font = self.font;
}
}

- (void)setFont:(UIFont *)font
{
NSString *overrideFontName = self.overrideFontName;
if (overrideFontName != nil)
{
font = [UIFont fontWithName:overrideFontName size:font.pointSize];
}

[super setFont:font];
}

@end


tried various things but too many errors
here my attempt



import Foundation
import UIKit

class myTextLabel:UILabel{

@IBInspectable var overrideFontName: String = ""
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

func setOverrideFontName(_ overrideFontName: String) {
if !(self.overrideFontName == overrideFontName) {
self.overrideFontName = overrideFontName
font = font
}
}

func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}

}






ios objective-c swift






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 3 at 8:18









Martijn Pieters

726k14325482349




726k14325482349










asked Sep 5 '17 at 13:13









SuperllanboySuperllanboy

163




163













  • What errors do you get?

    – Fogmeister
    Sep 5 '17 at 13:23











  • Method 'setOverrideFontName' with Objective-C selector 'setOverrideFontName:' conflicts with setter for 'overrideFontName' with the same Objective-C selector

    – Superllanboy
    Sep 5 '17 at 14:54



















  • What errors do you get?

    – Fogmeister
    Sep 5 '17 at 13:23











  • Method 'setOverrideFontName' with Objective-C selector 'setOverrideFontName:' conflicts with setter for 'overrideFontName' with the same Objective-C selector

    – Superllanboy
    Sep 5 '17 at 14:54

















What errors do you get?

– Fogmeister
Sep 5 '17 at 13:23





What errors do you get?

– Fogmeister
Sep 5 '17 at 13:23













Method 'setOverrideFontName' with Objective-C selector 'setOverrideFontName:' conflicts with setter for 'overrideFontName' with the same Objective-C selector

– Superllanboy
Sep 5 '17 at 14:54





Method 'setOverrideFontName' with Objective-C selector 'setOverrideFontName:' conflicts with setter for 'overrideFontName' with the same Objective-C selector

– Superllanboy
Sep 5 '17 at 14:54












1 Answer
1






active

oldest

votes


















-1














Try it:



import UIKit

class myTextLabels: UILabel {
@IBInspectable private var _overrideFontName: String = ""
@IBInspectable var overrideFontName: String {
get {
return _overrideFontName
}
set(overrideFontName) {
if !(_overrideFontName == overrideFontName) {
_overrideFontName = overrideFontName
font = font
}
}
}
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

override func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}
}





share|improve this answer
























  • having tried your code , i now have more errors as follows

    – Superllanboy
    Sep 6 '17 at 7:33











  • Use of undeclared type 'NSFont'

    – Superllanboy
    Sep 6 '17 at 7:33











  • Comparing non-optional value of type 'String' to nil always returns true

    – Superllanboy
    Sep 6 '17 at 7:33











  • UIFont can't work too ? The second error doesn't seem an error no ?

    – user8381604
    Sep 6 '17 at 9:34













  • I Tried UIFont but it just kicks up even more moans and groans

    – Superllanboy
    Sep 6 '17 at 12:09












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f46055917%2fconvert-uilabel-subclass-from-objective-c-to-swift%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









-1














Try it:



import UIKit

class myTextLabels: UILabel {
@IBInspectable private var _overrideFontName: String = ""
@IBInspectable var overrideFontName: String {
get {
return _overrideFontName
}
set(overrideFontName) {
if !(_overrideFontName == overrideFontName) {
_overrideFontName = overrideFontName
font = font
}
}
}
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

override func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}
}





share|improve this answer
























  • having tried your code , i now have more errors as follows

    – Superllanboy
    Sep 6 '17 at 7:33











  • Use of undeclared type 'NSFont'

    – Superllanboy
    Sep 6 '17 at 7:33











  • Comparing non-optional value of type 'String' to nil always returns true

    – Superllanboy
    Sep 6 '17 at 7:33











  • UIFont can't work too ? The second error doesn't seem an error no ?

    – user8381604
    Sep 6 '17 at 9:34













  • I Tried UIFont but it just kicks up even more moans and groans

    – Superllanboy
    Sep 6 '17 at 12:09
















-1














Try it:



import UIKit

class myTextLabels: UILabel {
@IBInspectable private var _overrideFontName: String = ""
@IBInspectable var overrideFontName: String {
get {
return _overrideFontName
}
set(overrideFontName) {
if !(_overrideFontName == overrideFontName) {
_overrideFontName = overrideFontName
font = font
}
}
}
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

override func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}
}





share|improve this answer
























  • having tried your code , i now have more errors as follows

    – Superllanboy
    Sep 6 '17 at 7:33











  • Use of undeclared type 'NSFont'

    – Superllanboy
    Sep 6 '17 at 7:33











  • Comparing non-optional value of type 'String' to nil always returns true

    – Superllanboy
    Sep 6 '17 at 7:33











  • UIFont can't work too ? The second error doesn't seem an error no ?

    – user8381604
    Sep 6 '17 at 9:34













  • I Tried UIFont but it just kicks up even more moans and groans

    – Superllanboy
    Sep 6 '17 at 12:09














-1












-1








-1







Try it:



import UIKit

class myTextLabels: UILabel {
@IBInspectable private var _overrideFontName: String = ""
@IBInspectable var overrideFontName: String {
get {
return _overrideFontName
}
set(overrideFontName) {
if !(_overrideFontName == overrideFontName) {
_overrideFontName = overrideFontName
font = font
}
}
}
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

override func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}
}





share|improve this answer













Try it:



import UIKit

class myTextLabels: UILabel {
@IBInspectable private var _overrideFontName: String = ""
@IBInspectable var overrideFontName: String {
get {
return _overrideFontName
}
set(overrideFontName) {
if !(_overrideFontName == overrideFontName) {
_overrideFontName = overrideFontName
font = font
}
}
}
@IBInspectable var iphoneFontSize: CGFloat = 0.0
@IBInspectable var ipadFontSize: CGFloat = 0.0

override func setFont(_ font: NSFont!) {
let overrideFontName: String = self.overrideFontName
if overrideFontName != nil {
font = UIFont(name: overrideFontName, size: font.pointSize)
}
super.font = font
}
}






share|improve this answer












share|improve this answer



share|improve this answer










answered Sep 5 '17 at 15:12







user8381604




















  • having tried your code , i now have more errors as follows

    – Superllanboy
    Sep 6 '17 at 7:33











  • Use of undeclared type 'NSFont'

    – Superllanboy
    Sep 6 '17 at 7:33











  • Comparing non-optional value of type 'String' to nil always returns true

    – Superllanboy
    Sep 6 '17 at 7:33











  • UIFont can't work too ? The second error doesn't seem an error no ?

    – user8381604
    Sep 6 '17 at 9:34













  • I Tried UIFont but it just kicks up even more moans and groans

    – Superllanboy
    Sep 6 '17 at 12:09



















  • having tried your code , i now have more errors as follows

    – Superllanboy
    Sep 6 '17 at 7:33











  • Use of undeclared type 'NSFont'

    – Superllanboy
    Sep 6 '17 at 7:33











  • Comparing non-optional value of type 'String' to nil always returns true

    – Superllanboy
    Sep 6 '17 at 7:33











  • UIFont can't work too ? The second error doesn't seem an error no ?

    – user8381604
    Sep 6 '17 at 9:34













  • I Tried UIFont but it just kicks up even more moans and groans

    – Superllanboy
    Sep 6 '17 at 12:09

















having tried your code , i now have more errors as follows

– Superllanboy
Sep 6 '17 at 7:33





having tried your code , i now have more errors as follows

– Superllanboy
Sep 6 '17 at 7:33













Use of undeclared type 'NSFont'

– Superllanboy
Sep 6 '17 at 7:33





Use of undeclared type 'NSFont'

– Superllanboy
Sep 6 '17 at 7:33













Comparing non-optional value of type 'String' to nil always returns true

– Superllanboy
Sep 6 '17 at 7:33





Comparing non-optional value of type 'String' to nil always returns true

– Superllanboy
Sep 6 '17 at 7:33













UIFont can't work too ? The second error doesn't seem an error no ?

– user8381604
Sep 6 '17 at 9:34







UIFont can't work too ? The second error doesn't seem an error no ?

– user8381604
Sep 6 '17 at 9:34















I Tried UIFont but it just kicks up even more moans and groans

– Superllanboy
Sep 6 '17 at 12:09





I Tried UIFont but it just kicks up even more moans and groans

– Superllanboy
Sep 6 '17 at 12:09




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f46055917%2fconvert-uilabel-subclass-from-objective-c-to-swift%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

A Topological Invariant for $pi_3(U(n))$