Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing UIKit imports for iOS 7 #780

Merged
merged 1 commit into from
Feb 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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