iConversation

https://itunes.apple.com/us/app/iconversation/id612243096?ls=1&mt=8

iConversation

https://itunes.apple.com/us/app/iconversation/id612243096?ls=1&mt=8

Image | Posted on by | Tagged , , , , , , | Leave a comment

https://itunes.apple.com/us/app/iconversation/id612243096?ls=1&mt=8

iConversation

Learn Nepali Conversation. The app contains English sentences which has been translated to Nepali with pronunciation support along with some tips.

mzl.kjnyttnz.320x480-75

mzl.tostxrtv.320x480-75mzl.pewfbxkw.320x480-75

Link | Posted on by | Leave a comment

iVarnamala launched

We are finally back with iVarnamala.
https://itunes.apple.com/tr/app/ivarnamala/id591644982?mt=8&ign-mpt=uo%3D2

mzl.afcvxtfo.320x480-75

mzl.czppjyvy.320x480-75

mzl.hqbndocq.320x480-75

Posted in Uncategorized | Tagged , , , , | Leave a comment

SMS Hindi

SMS Hindi is now available on App store. We hope that you would enjoy the app and provide us with any feedback or comments that you may have.

SMS Hindi can be downloaded from
http://itunes.apple.com/us/app/sms-hindi/id478296007?mt=8

Posted in SMS Hindi | Tagged , , , , , , , , | Leave a comment

SMS Nepali

SMS Nepali is now available on App store. We hope that you would enjoy the app and provide us with any feedback or comments that you may have.

SMS Nepali can be downloaded from
http://itunes.apple.com/us/app/sms-nepali/id463110482?mt=8

Posted in Uncategorized | Tagged , , , , , , , , | 1 Comment

XCode – Making objects move

Tutorial 1:

Making objects move.

Once we have the Xcode setup there are three things we need to consider to make the objects move.

  1.  –ViewController.h
  2.  –ViewController.m
  3. –ViewController.xib


Code for --ViewController.h

@interface GeekyLemonOneViewController : UIViewController {
IBOutlet UIImageView *image;
NSTimer *moveObjectTimer;
}

Code for –ViewController.m

-(void) viewDidLoad{
moveObjectTimer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(moveObject) userInfo:nil repeats:YES];
}

-(void) moveObject{
image.center = CGPointMake(image.center.x, image.center.y +5);
}

Lastly, place your image on .xib and attach it to the FileOwner.

Regards,
Deeper-programming

Posted in Uncategorized | Leave a comment

Baghchal available on App store

Baghchal is now available on App store. We hope that you would enjoy the game and provide us with any feedback or comments that you may have.

http://itunes.apple.com/us/app/baghchal/id439564667?mt=8

Have fun playing the game!!

Regards,
Deeper-programming

Posted in Baghchal | Tagged , , , , , , , , , | Leave a comment