@@ -47,7 +47,7 @@ class NFXSettingsController_iOS: NFXSettingsController, UITableViewDelegate, UIT
4747 var nfxVersionLabel : UILabel
4848 nfxVersionLabel = UILabel ( frame: CGRect ( x: 10 , y: self . view. frame. height - 60 , width: self . view. frame. width - 2 * 10 , height: 30 ) )
4949 nfxVersionLabel. autoresizingMask = [ . flexibleTopMargin, . flexibleWidth]
50- nfxVersionLabel. font = UIFont . NFXFont ( 14 )
50+ nfxVersionLabel. font = UIFont . NFXFont ( size : 14 )
5151 nfxVersionLabel. textColor = UIColor . NFXOrangeColor ( )
5252 nfxVersionLabel. textAlignment = . center
5353 nfxVersionLabel. text = nfxVersionString
@@ -56,7 +56,7 @@ class NFXSettingsController_iOS: NFXSettingsController, UITableViewDelegate, UIT
5656 var nfxURLButton : UIButton
5757 nfxURLButton = UIButton ( frame: CGRect ( x: 10 , y: self . view. frame. height - 40 , width: self . view. frame. width - 2 * 10 , height: 30 ) )
5858 nfxURLButton. autoresizingMask = [ . flexibleTopMargin, . flexibleWidth]
59- nfxURLButton. titleLabel? . font = UIFont . NFXFont ( 12 )
59+ nfxURLButton. titleLabel? . font = UIFont . NFXFont ( size : 12 )
6060 nfxURLButton. setTitleColor ( UIColor . NFXGray44Color ( ) , for: UIControlState ( ) )
6161 nfxURLButton. titleLabel? . textAlignment = . center
6262 nfxURLButton. setTitle ( nfxURL, for: UIControlState ( ) )
@@ -109,7 +109,7 @@ class NFXSettingsController_iOS: NFXSettingsController, UITableViewDelegate, UIT
109109 func tableView( _ tableView: UITableView , cellForRowAt indexPath: IndexPath ) -> UITableViewCell
110110 {
111111 let cell = UITableViewCell ( )
112- cell. textLabel? . font = UIFont . NFXFont ( 14 )
112+ cell. textLabel? . font = UIFont . NFXFont ( size : 14 )
113113 cell. tintColor = UIColor . NFXOrangeColor ( )
114114
115115 switch ( indexPath as NSIndexPath ) . section
@@ -133,14 +133,14 @@ class NFXSettingsController_iOS: NFXSettingsController, UITableViewDelegate, UIT
133133 cell. textLabel? . textAlignment = . center
134134 cell. textLabel? . text = " Share Session Logs "
135135 cell. textLabel? . textColor = UIColor . NFXGreenColor ( )
136- cell. textLabel? . font = UIFont . NFXFont ( 16 )
136+ cell. textLabel? . font = UIFont . NFXFont ( size : 16 )
137137 return cell
138138
139139 case 3 :
140140 cell. textLabel? . textAlignment = . center
141141 cell. textLabel? . text = " Clear data "
142142 cell. textLabel? . textColor = UIColor . NFXRedColor ( )
143- cell. textLabel? . font = UIFont . NFXFont ( 16 )
143+ cell. textLabel? . font = UIFont . NFXFont ( size : 16 )
144144
145145 return cell
146146
@@ -175,7 +175,7 @@ class NFXSettingsController_iOS: NFXSettingsController, UITableViewDelegate, UIT
175175 filtersInfoLabel = UILabel ( frame: headerView. bounds)
176176 filtersInfoLabel. backgroundColor = UIColor . clear
177177 filtersInfoLabel. autoresizingMask = [ . flexibleWidth, . flexibleHeight]
178- filtersInfoLabel. font = UIFont . NFXFont ( 13 )
178+ filtersInfoLabel. font = UIFont . NFXFont ( size : 13 )
179179 filtersInfoLabel. textColor = UIColor . NFXGray44Color ( )
180180 filtersInfoLabel. textAlignment = . center
181181 filtersInfoLabel. text = " \n Select the types of responses that you want to see "
0 commit comments