Skip to content

Commit

Permalink
Finish Project AnimateTableViewCell
Browse files Browse the repository at this point in the history
  • Loading branch information
khuong291 committed Jun 5, 2016
1 parent 79885b8 commit af7c44e
Show file tree
Hide file tree
Showing 21 changed files with 470 additions and 9 deletions.
Binary file not shown.
Expand Up @@ -7,21 +7,25 @@
objects = {

/* Begin PBXBuildFile section */
99844B421D03C13100C02EBD /* Trip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99844B411D03C13100C02EBD /* Trip.swift */; };
99B7DF4A1D033FAC00D195D3 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B7DF491D033FAC00D195D3 /* AppDelegate.swift */; };
99B7DF4C1D033FAC00D195D3 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B7DF4B1D033FAC00D195D3 /* ViewController.swift */; };
99B7DF4F1D033FAC00D195D3 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 99B7DF4D1D033FAC00D195D3 /* Main.storyboard */; };
99B7DF511D033FAC00D195D3 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 99B7DF501D033FAC00D195D3 /* Assets.xcassets */; };
99B7DF541D033FAC00D195D3 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 99B7DF521D033FAC00D195D3 /* LaunchScreen.storyboard */; };
99B7DF5C1D03426600D195D3 /* AnimateTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B7DF5B1D03426600D195D3 /* AnimateTableViewCell.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
99844B411D03C13100C02EBD /* Trip.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Trip.swift; sourceTree = "<group>"; };
99B7DF461D033FAB00D195D3 /* AnimateTableViewCell.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AnimateTableViewCell.app; sourceTree = BUILT_PRODUCTS_DIR; };
99B7DF491D033FAC00D195D3 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
99B7DF4B1D033FAC00D195D3 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
99B7DF4E1D033FAC00D195D3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
99B7DF501D033FAC00D195D3 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
99B7DF531D033FAC00D195D3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
99B7DF551D033FAC00D195D3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
99B7DF5B1D03426600D195D3 /* AnimateTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimateTableViewCell.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -60,6 +64,8 @@
99B7DF501D033FAC00D195D3 /* Assets.xcassets */,
99B7DF521D033FAC00D195D3 /* LaunchScreen.storyboard */,
99B7DF551D033FAC00D195D3 /* Info.plist */,
99B7DF5B1D03426600D195D3 /* AnimateTableViewCell.swift */,
99844B411D03C13100C02EBD /* Trip.swift */,
);
path = AnimateTableViewCell;
sourceTree = "<group>";
Expand Down Expand Up @@ -135,8 +141,10 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
99844B421D03C13100C02EBD /* Trip.swift in Sources */,
99B7DF4C1D033FAC00D195D3 /* ViewController.swift in Sources */,
99B7DF4A1D033FAC00D195D3 /* AppDelegate.swift in Sources */,
99B7DF5C1D03426600D195D3 /* AnimateTableViewCell.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -286,6 +294,7 @@
99B7DF5A1D033FAC00D195D3 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
Expand Down
Binary file not shown.
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "1"
version = "2.0">
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.ExceptionBreakpoint">
<BreakpointContent
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
scope = "0"
stopOnStyle = "0">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>
@@ -0,0 +1,44 @@
//
// AnimateTableViewCell.swift
// AnimateTableViewCell
//
// Created by Khuong Pham on 6/5/16.
// Copyright 漏 2016 Fantageek. All rights reserved.
//

import UIKit

class AnimateTableViewCell: UITableViewCell {

@IBOutlet var containerView: UIView! {
didSet {
containerView.layer.cornerRadius = 5
containerView.clipsToBounds = true
}
}
@IBOutlet var infoView: UIView! {
didSet {
infoView.layer.cornerRadius = 5
infoView.clipsToBounds = true
}
}
@IBOutlet var coverImageView: UIImageView! {
didSet {
coverImageView.layer.cornerRadius = 5
coverImageView.clipsToBounds = true
}
}
@IBOutlet var placeNameLabel: UILabel!
@IBOutlet var priceLabel: UILabel!
@IBOutlet var fromLabel: UILabel!
@IBOutlet var toLabel: UILabel!

override func awakeFromNib() {
super.awakeFromNib()
}

override func setSelected(selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}

}
@@ -0,0 +1,6 @@
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "amsterdam.jpg",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "circle.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "london.jpg",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "oslo.jpg",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "paris.jpg",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,21 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "rome.jpeg",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit af7c44e

Please sign in to comment.