Tuesday, 26 February 2013

Stock Ticker

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.

 

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

StockTiker *stkticker=[[StockTiker alloc] initWithFrame:CGRectMake(0, 0, 320, 20)];
view raw one.m hosted with ❤ by GitHub
  Set its properties as

stkticker.tdelegate=self;
stkticker.ttag=0;
[stkticker setBackgroundColor:[UIColor clearColor]];
[self.navigationController.navigationBar addSubview:stkticker];
view raw two.m hosted with ❤ by GitHub

  Implement its delegate method as:


#pragma mark- UITickerView delegate method
- (NSInteger)numberOfRowsintickerView:(StockTiker *)tickerView
{
return [objectArray count];
}
- (id)tickerView:(StockTiker*)tickerView cellForRowAtIndex:(int)index
{
return [objectArray objectAtIndex:index];
}
@end
view raw three.m hosted with ❤ by GitHub
Stock Tikcer.h 


// 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
view raw StockTiker.h hosted with ❤ by GitHub


 Stock Ticker.m  


// 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
view raw StockTiker.m hosted with ❤ by GitHub


You can have a sample code StockTicker

1 comment:

  1. 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].
    Real 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.

    ReplyDelete