Skip to content

Commit

Permalink
Merge pull request #780 from asmarques/fix-ios7
Browse files Browse the repository at this point in the history
Add missing UIKit imports for iOS 7
  • Loading branch information
danielgindi committed Feb 28, 2016
2 parents c677463 + 63bb919 commit 0dae6f0
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import Foundation
import CoreGraphics
import UIKit

public class ScatterChartDataSet: LineScatterCandleRadarChartDataSet, IScatterChartDataSet
{
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Data/Interfaces/IBarChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol IBarChartDataSet: IBarLineScatterCandleBubbleChartDataSet
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol IBarLineScatterCandleBubbleChartDataSet: IChartDataSet
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Data/Interfaces/IBubbleChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol IBubbleChartDataSet: IBarLineScatterCandleBubbleChartDataSet
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Data/Interfaces/ICandleChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol ICandleChartDataSet: ILineScatterCandleRadarChartDataSet
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Data/Interfaces/IChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol IChartDataSet
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Data/Interfaces/ILineChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol ILineChartDataSet: ILineRadarChartDataSet
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol ILineRadarChartDataSet: ILineScatterCandleRadarChartDataSet
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Data/Interfaces/IPieChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol IPieChartDataSet: IChartDataSet
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Data/Interfaces/IScatterChartDataSet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

@objc
public protocol IScatterChartDataSet: ILineScatterCandleRadarChartDataSet
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Formatters/ChartDefaultFillFormatter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
//

import Foundation
import UIKit

/// Default formatter that calculates the position of the filled line.
public class ChartDefaultFillFormatter: NSObject, ChartFillFormatter
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Jobs/AnimatedMoveViewJob.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//

import Foundation
import UIKit

public class AnimatedMoveChartViewJob: AnimatedViewPortJob
{
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Jobs/AnimatedViewPortJob.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//

import Foundation
import UIKit

public class AnimatedViewPortJob: ChartViewPortJob
{
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Jobs/AnimatedZoomViewJob.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//

import Foundation
import UIKit

public class AnimatedZoomChartViewJob: AnimatedViewPortJob
{
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Jobs/ChartViewPortJob.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//

import Foundation
import UIKit

// This defines a viewport modification job, used for delaying or animating viewport changes
public class ChartViewPortJob
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Jobs/MoveChartViewJob.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//

import Foundation
import UIKit

public class MoveChartViewJob: ChartViewPortJob
{
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Jobs/ZoomChartViewJob.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//

import Foundation
import UIKit

public class ZoomChartViewJob: ChartViewPortJob
{
Expand Down
1 change: 1 addition & 0 deletions Charts/Classes/Utils/ChartFill.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
//

import Foundation
import UIKit

public class ChartFill: NSObject
{
Expand Down

0 comments on commit 0dae6f0

Please sign in to comment.