Authorsanjay.raskar

How to post custom facebook stories to timeline

H

1.Create a facebook app & setup app id with your project. 2.create your own story from facebook app opengraph section by creating action & object. 3.Post one story to app owner timeline & submit it to the facebook review team so that it will be become public for app user & can be seen publicaly on timeline follwing code shows the how to post the story. -(void)Poststory { NSString...

Moving view along with fingure touch

M

You can move any view inside your viewcontroller simply adding pangestureRecogniser -(void)ViewDidLoad { //add pangesture recognise to your moving view UIPanGestureRecognizer *mSwipeUpRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handletapgesture:)]; [mSwipeUpRecognizer setMaximumNumberOfTouches:1]; [mSwipeUpRecognizer setMaximumNumberOfTouches:1]; [Yourview...

Category