You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- (void)viewDidLoad {
[super viewDidLoad];
self.timeline //Property 'points' not found on object of type 'ISTimeline *'
}
But other property of timeline is found except 'points'
could u tell me whats problem with that?
i notice something u might want to know as follow
ISTimeline.h
import UIKit
public class ISTimeline : UIScrollView {
open var pointDiameter: CGFloat { get set }
open var lineWidth: CGFloat { get set }
open var bubbleRadius: CGFloat { get set }
open var bubbleColor: UIColor
open var titleColor: UIColor
open var descriptionColor: UIColor
open var points: [ITUserSample.ISPoint] { get set }
open var bubbleArrows: Bool
override public init(frame: CGRect)
required public init?(coder aDecoder: NSCoder)
override open func draw(_ rect: CGRect)
override open func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?)
}
ISPoint.h
import UIKit
public class ISPoint {
open var title: String
open var description: String?
open var pointColor: UIColor
open var lineColor: UIColor
open var touchUpInside: Optional<(_ point: ISPoint) -> Void>
open var fill: Bool
public init(title: String, description: String, pointColor: UIColor, lineColor: UIColor, touchUpInside: Optional<(_ point: ISPoint) -> Void>, fill: Bool)
public convenience init(title: String, description: String, touchUpInside: Optional<(_ point: ISPoint) -> Void>)
public convenience init(title: String, touchUpInside: Optional<(_ point: ISPoint) -> Void>)
public convenience init(title: String)
}
The text was updated successfully, but these errors were encountered:
halo master
forgive my poor english
i get wrong when using oc invoke timeline
h file
m file
But other property of timeline is found except 'points'
could u tell me whats problem with that?
i notice something u might want to know as follow
ISTimeline.h
ISPoint.h
The text was updated successfully, but these errors were encountered: