Stock Ticker is simply a file that will allow to pass views and number of views to get display on your tickerView.
Ticker you have always see on pull down shutter in your iphone.
Here I have passed stock Views and Currency views.
You can pass your views to display.This is a continuous object display.No space will come then ticker ends.It will continue with first object of the ticker Views array.
You can have a sample code StockTicker
Ticker you have always see on pull down shutter in your iphone.
Here I have passed stock Views and Currency views.
You can pass your views to display.This is a continuous object display.No space will come then ticker ends.It will continue with first object of the ticker Views array.
Using:- To use it,import StockTicker.h file in your code window.Made an array of UIViews or UILabels whatever you want to display as objects on your ticker.
Make TickerView instance as
This file contains 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
StockTiker *stkticker=[[StockTiker alloc] initWithFrame:CGRectMake(0, 0, 320, 20)];
Set its properties as
This file contains 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
StockTiker *stkticker=[[StockTiker alloc] initWithFrame:CGRectMake(0, 0, 320, 20)]; |
This file contains 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
stkticker.tdelegate=self;
stkticker.ttag=0;
[stkticker setBackgroundColor:[UIColor clearColor]];
[self.navigationController.navigationBar addSubview:stkticker];
This file contains 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
stkticker.tdelegate=self; | |
stkticker.ttag=0; | |
[stkticker setBackgroundColor:[UIColor clearColor]]; | |
[self.navigationController.navigationBar addSubview:stkticker]; |
Implement its delegate method as:
This file contains 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
#pragma mark- UITickerView delegate method
- (NSInteger)numberOfRowsintickerView:(StockTiker *)tickerView
{
return [objectArray count];
}
- (id)tickerView:(StockTiker*)tickerView cellForRowAtIndex:(int)index
{
return [objectArray objectAtIndex:index];
}
@end
Stock Tikcer.h
This file contains 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
#pragma mark- UITickerView delegate method | |
- (NSInteger)numberOfRowsintickerView:(StockTiker *)tickerView | |
{ | |
return [objectArray count]; | |
} | |
- (id)tickerView:(StockTiker*)tickerView cellForRowAtIndex:(int)index | |
{ | |
return [objectArray objectAtIndex:index]; | |
} | |
@end |
This file contains 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
// Created by Prince Kumar Sharma on 20/02/13. | |
// Copyright (c) 2012 Prince Kumar Sharma. All rights reserved. | |
#import <UIKit/UIKit.h> | |
@class StockTiker; | |
@protocol UIStockTickerDelegate<NSObject> | |
@required | |
- (NSInteger)numberOfRowsintickerView:(StockTiker *)tickerView; | |
- (id)tickerView:(StockTiker*)tickerView cellForRowAtIndex:(int)index; | |
@end | |
@interface StockTiker : UIScrollView<UITableViewDataSource> | |
{ | |
@private | |
int count; | |
int numberOfObjects; | |
id<UIStockTickerDelegate> tdelegate; | |
} | |
@property (assign) id<UIStockTickerDelegate>tdelegate; | |
@property(assign)NSUInteger ttag; | |
-(void)start; | |
@end |
Stock Ticker.m
This file contains 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
// Created by Prince Kumar Sharma on 20/02/13. | |
// Copyright (c) 2012 Prince Kumar Sharma. All rights reserved. | |
#import "StockTiker.h" | |
@implementation StockTiker | |
@synthesize tdelegate=_tdelegate; | |
@synthesize ttag=_ttag; | |
- (id)initWithFrame:(CGRect)frame | |
{ | |
self = [super initWithFrame:frame]; | |
if (self) { | |
// Initialization code | |
} | |
return self; | |
} | |
// Only override drawRect: if you perform custom drawing. | |
// An empty implementation adversely affects performance during animation. | |
- (void)drawRect:(CGRect)rect | |
{ | |
// Drawing code | |
} | |
-(void)start | |
{ | |
count=0; | |
numberOfObjects=[_tdelegate numberOfRowsintickerView:self]; | |
[NSTimer scheduledTimerWithTimeInterval:0.002 target:self selector:@selector(moveObjects) userInfo:nil repeats:YES]; | |
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(checkPosition) userInfo:nil repeats:YES]; | |
} | |
-(void)addElement:(UIView*)subView | |
{ | |
if (![self.subviews containsObject:(id)subView]) { | |
[subView setFrame:CGRectMake(self.frame.size.width, 0, subView.frame.size.width, subView.frame.size.height)]; | |
[self addSubview:subView]; | |
} | |
} | |
-(void)checkPosition | |
{ | |
UIView *view=[self.tdelegate tickerView:self cellForRowAtIndex:count]; | |
CGRect rect=[view frame]; | |
float x=rect.origin.x+rect.size.width; | |
if (x<300) { | |
count=count+1; | |
if (count==numberOfObjects) { | |
count=0; | |
} | |
} | |
UIView *subView=[self.tdelegate tickerView:self cellForRowAtIndex:count]; | |
[self addElement:subView]; | |
if ((rect.origin.x+rect.size.width)<0) { | |
[view removeFromSuperview]; | |
} | |
} | |
-(void)moveObjects | |
{ | |
CGRect rect; | |
for (UIView *view in self.subviews) { | |
rect=[view frame]; | |
rect.origin.x=rect.origin.x-0.1; | |
[view setFrame:rect]; | |
[view setNeedsDisplayInRect:rect]; | |
} | |
} | |
@end |
You can have a sample code StockTicker
It's an elegant and informational website for finantial market. I like your website very surely. Thank you very much for published this website. If want more informstion about stock ticker to visit stock screener You can purchase the amazing Doubling Stocks program at a special discount here [http://mydoublingstocksreview.info].
ReplyDeleteReal Time Stock Ticker: And Info On Making Money With Stocks
A friend told me about the doubling stocks program. For those of you that have never heard of doubling stocks, it is essentially a program that gives you profitable stock information. If you have a computer and the internet, you can do this.