Skip to content

Instantly share code, notes, and snippets.

@cmoulton
Created October 17, 2015 19:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmoulton/f5640b2e75411d87df9b to your computer and use it in GitHub Desktop.
Save cmoulton/f5640b2e75411d87df9b to your computer and use it in GitHub Desktop.
Swift Custom Font Example. See https://grokswift.com/custom-fonts/
//
// ViewController.swift
// starWarsTableViewUpdates
//
// Created by Christina Moulton on 2015-10-17.
// Copyright (c) 2015 Teak Mobile Inc. All rights reserved.
//
import UIKit
class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView?
var movies:Array<String>? = ["Star Wars", "The Empire Strikes Back", "A New Hope"]
var tapCount = 0
override func viewDidLoad() {
super.viewDidLoad()
let addButton = UIBarButtonItem(barButtonSystemItem: .Add, target: self, action: "buttonTapped:")
self.navigationItem.rightBarButtonItem = addButton
}
func buttonTapped(sender: AnyObject) {
tapCount++
if (tapCount == 1)
{
// Add the prequels if we're not showing them yet
movies?.insert("The Phantom Menace", atIndex: 0)
movies?.insert("The Attack of the Clones", atIndex: 1)
movies?.insert("Revenge of the Sith", atIndex: 2)
// use a single call to update the tableview with 3 indexpaths
self.tableView?.insertRowsAtIndexPaths(
[NSIndexPath(forRow: 0, inSection: 0),
NSIndexPath(forRow: 1, inSection: 0),
NSIndexPath(forRow: 2, inSection: 0)],
withRowAnimation: .Automatic)
}
else if (tapCount == 2)
{
// Add the sequels, even though they don't exist yet
// use one call to delete and one call to add rows to the tableview
// so we need to wrap them in beginUpdates()/endUpdates()
if let count = movies?.count
{
self.tableView?.beginUpdates()
// add sequels
movies?.append("The Force Awakens")
movies?.append("Episode 8")
movies?.append("Episode 9")
self.tableView?.insertRowsAtIndexPaths(
[NSIndexPath(forRow: count - 3, inSection: 0),
NSIndexPath(forRow: count + 1 - 3, inSection: 0),
NSIndexPath(forRow: count + 2 - 3, inSection: 0)],
withRowAnimation: .Automatic)
// remove prequels
movies?.removeAtIndex(0)
movies?.removeAtIndex(0)
movies?.removeAtIndex(0)
self.tableView?.deleteRowsAtIndexPaths(
[NSIndexPath(forRow: 0, inSection: 0),
NSIndexPath(forRow: 1, inSection: 0),
NSIndexPath(forRow: 2, inSection: 0)],
withRowAnimation: .Automatic)
self.tableView?.endUpdates()
}
}
}
// MARK: - TableView
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return movies?.count ?? 0
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
if let movieTitle = movies?[indexPath.row]
{
cell.textLabel!.text = movieTitle
}
else
{
cell.textLabel!.text = ""
}
let preferredDescriptor = UIFont.preferredFontForTextStyle(UIFontTextStyleHeadline)
let font = UIFont(name: "StarJediOutline", size: preferredDescriptor.pointSize)
cell.textLabel?.font = font
print("row: \(indexPath.row), title: \(cell.textLabel!.text!)")
return cell
}
}
@appsird
Copy link

appsird commented Nov 16, 2016

Updated for iOS 10.2
`//
// ViewController.swift
// starWarsTableViewUpdates
//
// Created by Christina Moulton on 2015-10-17.
// Copyright (c) 2015 Teak Mobile Inc. All rights reserved.
//

import UIKit

class ViewController: UITableViewController {

var movies:Array? = ["Star Wars", "The Empire Strikes Back", "A New Hope"]
var tapCount = 0

override func viewDidLoad() {
super.viewDidLoad()

let addButton =  UIBarButtonItem(title: "Add", style: .plain, target: self, action: #selector(buttonTapped))

self.navigationItem.rightBarButtonItem = addButton

}

func buttonTapped(sender: AnyObject) {
tapCount += 1
if (tapCount == 1)
{
// Add the prequels if we're not showing them yet
movies?.insert("The Phantom Menace", at: 0)
movies?.insert("The Attack of the Clones", at: 1)
movies?.insert("Revenge of the Sith", at: 2)

  // use a single call to update the tableview with 3 indexpaths
    self.tableView?.insertRows(
        at: [IndexPath(row: 0, section: 0),
             IndexPath(row: 1, section: 0),
             IndexPath(row: 2, section: 0)],
        with: .automatic)
}
else if (tapCount == 2)
{
  // Add the sequels, even though they don't exist yet
  // use one call to delete and one call to add rows to the tableview
  // so we need to wrap them in beginUpdates()/endUpdates()
  if let count = movies?.count
  {
    self.tableView?.beginUpdates()
    
    // add sequels
    movies?.append("The Force Awakens")
    movies?.append("Episode 8")
    movies?.append("Episode 9")
    self.tableView?.insertRows(
        at: [IndexPath(row: count - 3, section: 0),
             IndexPath(row: count + 1 - 3, section: 0),
             IndexPath(row: count + 2 - 3, section: 0)],
        with: .automatic)
    
    // remove prequels
    movies?.remove(at: 0)
    movies?.remove(at: 0)
    movies?.remove(at: 0)
    self.tableView?.deleteRows(
        at: [IndexPath(row: 0, section: 0),
             IndexPath(row: 1, section: 0),
             IndexPath(row: 2, section: 0)],
        with: .automatic)
    
    self.tableView?.endUpdates()
  }
}

}

// MARK: - TableView
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return movies?.count ?? 0
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath as IndexPath) as UITableViewCell

if let movieTitle = movies?[indexPath.row]
{
  cell.textLabel!.text = movieTitle
}
else
{
  cell.textLabel!.text = ""
}

print("row: \(indexPath.row), title: \(cell.textLabel!.text!)")
return cell

}
}
`

@appsird
Copy link

appsird commented Nov 16, 2016

Tried do do a pull to update, though no success. let me know how I can provide the entire functioning project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment