This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // | |
| // FriendsViewController.swift | |
| // Nudge | |
| // | |
| // Created by Peter Nicholls on 2/08/2014. | |
| // Copyright (c) 2014 Peter Nicholls. All rights reserved. | |
| // | |
| import Foundation | |
| import UIKit | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | class SettingsViewController: UIViewController { | |
| weak var delegate: SettingsViewControllerDelegate? | |
| ... | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #import "SSDataKit.h" | |
| @class CDKList; | |
| @class CDKTask; | |
| extern NSString *const kCDKCurrentUserChangedNotificationName; | |
| @interface CDKUser : SSRemoteManagedObject | |
| @property (nonatomic, strong) NSString *firstName; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import UIKit | |
| class AuthenticationViewController: UIViewController { | |
| // MARK: - Properties | |
| var welcomeLabel: UILabel = { | |
| let label = UILabel() | |
| label.text = "Welcome to Paparazzi" | |
| label.setTranslatesAutoresizingMaskIntoConstraints(false) | |
| label.font = UIFont(name: "HelveticaNeue-Thin", size: 30) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | class Stock < ActiveRecord::Base | |
| include Elasticsearch::Model | |
| include Elasticsearch::Model::Callbacks | |
| belongs_to :exchange | |
| belongs_to :company | |
| has_many :comments, as: :commentable | |
| has_many :tasks | |
| has_many :task_comments, through: :tasks, source: :comments | 
OlderNewer