1662130980
Font management (System & Custom) for iOS and tvOS
No more wasted time searching for names of UIFont
fonts and no more surprises at runtime if a font name was mistyped. This library is simply one extension to UIFont
and one Font
enum
with a case for each system font on iOS and tvOS. Custom font support is also available, please keep reading for details!
Instead of using the String
based constructor native to UIFont
:
let font = UIFont(name: "Arial-BoldItalicMT", size: 12.0)
You can now simply start typing the name of the font enum and let code completion help you:
This library currently provides two different options for creating UIFont
objects. The first is calling the font name off of the provided BuiltInFont
enumeration and then calling of(size:)
to provide the desired size.
let myFont: UIFont? = BuiltInFont.helvetica.of(size: 12.0)
The other UIFont
creation method offered by this library is similar to the normal UIFont
constructor except that instead of providing a String
of the desired font, a case of the Font
enum is provided instead.
let font = UIFont(font: .arialBoldItalicMT, size: 12.0)
Custom Fonts can be added with the help of the FontRepresentable
protocol. Simply create your own CustomFont
String
based enumeration that adapts the FontRepresentable
and add a case per font that you want to add like so:
// In your project using custom fonts
enum CustomFont: String, FontRepresentable {
case alexBrushRegular = "AlexBrush-Regular"
}
CustomFont.alexBrushRegular.of(size: 12.0) // => UIFont
SwiftUI Font is handled in a same way as UIKit UIFont.
You can do both:
let myFont: Font = BuiltInFont.helvetica.of(size: 12.0)
let font = Font(font: .arialBoldItalicMT, size: 12.0)
If you use Carthage to manage your dependencies, simply add UIFontComplete to your Cartfile
:
github "Nirma/UIFontComplete"
If you use Carthage to build your dependencies, make sure you have added UIFontComplete.framework
to the "Linked Frameworks and Libraries" section of your target, and have included UIFontComplete.framework
in your Carthage framework copying build phase.
If you use CocoaPods to manage your dependencies, simply add UIFontComplete to your Podfile
:
pod 'UIFontComplete'
Pull Requests are Welcome! If you feel that this library could be made better then please do so by sending over a pull request!
Author: Nirma
Source code: https://github.com/Nirma/UIFontComplete
License: MIT license
#swift
1616839708
Are you looking for the best swift iOS App Development Company in USA & India? We at AppClues Infotech is one of the leading Swift iOS App development company that help to build Innovative, Secure & high-performance mobile app with modern features & technology.
For more info:
Website: https://www.appcluesinfotech.com/
Email: info@appcluesinfotech.com
Call: +1-978-309-9910
#swift ios app development company in usa & india #swift ios app development company in usa #hire swift ios app developers in usa #top swift ios app development company #best swift ios app development company in usa #app development company in usa & india
1606455026
Are you looking for a Top Swift iOS App Development Company in USA? AppClues Infotech is a top Swift iOS App Development Company in USA that offers cutting-edge services to businesses for their custom requirements. Hire Dedicated Swift iOS Mobile Apps Developer & Programmers from AppClues Infotech at an affordable cost.
For more info:
Website: https://www.appcluesinfotech.com/
Email: info@appcluesinfotech.com
Call: +1-978-309-9910
#top swift app development company usa #best swift app development company #swift app development #swift ios app development #swift app development company #best swift ios app development company in usa
1612441441
Are you looking to hire the best swift iOS developers for your iPhone or iPad App project? AppClues Infotech is a top-rated iOS app development company in the USA. Hire our dedicated swift iOS app developers to build feature-rich and robust iOS app.
For more info:
Website: https://www.appcluesinfotech.com/
Email: info@appcluesinfotech.com
Call: +1-978-309-9910
#top swift app development company usa #best swift app development company #swift app development #swift ios app development #swift app development company #hire expert swift ios app developers in usa
1603285318
Hire an Exceptional Swift App Developer from Mobile App Development India. Maadi has a dedicated Swift App Development team that is superiorly talented and builds highly functional, cost-effective mobile apps with error-free coding.
Contact: https://www.mobile-app-development-india.com/swift-app-development/
#swift ios app development india #hire swift programmer india #swift ios development #apple swift app development #swift mobile app development #swift app development
1657310040
An assistant to manage the interactions between view and model
ModelAssistant is a mediator between the view and model. This framework is tailored to work in conjunction with views that present collections of objects. These views typically expect their data source to present results as a list of sections made up of rows. ModelAssistant can efficiently analyze model objects and categorize them in sections. In addition it updates adopted view to its delegate, based on model objects changes.
Now using modelAssitant is really easy with just two lines of codes, and delegates will be implement automatically to your collection view.
See Usage for new way of implementing modelAssistant.
Upgraded to Swift 5
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate ModelAssistant into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'ModelAssistant'
end
If you are not upgraded to Swift 4.2, use the last non-swift 4.2 compatible release:
If you are using swift 4, replace pod 'ModelAssistant'
with this:
pod 'ModelAssistant', '1.0.1' #Swift 4
If you are using swift 3, replace pod 'ModelAssistant'
with this:
pod 'ModelAssistant', '1.0.0' #Swift 3
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate ModelAssistant into your Xcode project using Carthage, specify it in your Cartfile
:
github "ssamadgh/ModelAssistant"
Run carthage update --platform iOS
to build the framework and drag the built ModelAssistant.framework
into your Xcode project.
If you prefer not to use any of the aforementioned dependency managers, you can integrate ModelAssistant into your project manually.
Open up Terminal, cd
into your top-level project directory, and run the following command "if" your project is not initialized as a git repository:
$ git init
Add ModelAssistant as a git submodule by running the following command:
$ git submodule add https://github.com/ssamadgh/ModelAssistant.git
Open the new ModelAssistant
folder, and drag the ModelAssistant.xcodeproj
into the Project Navigator of your application's Xcode project.
It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.
Select the ModelAssistant.xcodeproj
in the Project Navigator and verify the deployment target matches that of your application target.
Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
In the tab bar at the top of that window, open the "General" panel.
Click on the +
button under the "Embedded Binaries" section.
You will see two different ModelAssistant.xcodeproj
folders each with a ModelAssistant.framework
nested inside a Products
folder.
It does not matter which
Products
folder you choose from.
Select the ModelAssistant.framework
.
And that's it!
The
ModelAssistant.framework
is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.
ModelAssistant is fully compatible with all kind of design patterns. It doesn't violate them, instead it finds its place and sit there! As a guide the position of ModelAssistant in some of famous design patterns is as follows:
Design Pattern | ModelAssistant Position |
---|---|
MVC | Controller |
MVP | Presenter |
MVVM | ViewModel |
VIPER | Presenter |
ModelAssistant is owned and maintained by the Seyed Samad Gholamzadeh. You can follow me on Twitter at @ssamadgh for project updates and releases.
ModelAssistant is released under the MIT license. See LICENSE for details.
Author: ssamadgh
Source Code: https://github.com/ssamadgh/ModelAssistant
License: MIT license