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
Tutorial 1:
Making objects move.
Once we have the Xcode setup there are three things we need to consider to make the objects move.
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
We have submitted Baghchal to Apple for approval. If everything goes well we will be able to play Baghchal soon. Fingers crossed.
Regards,
Deeper-programming
If we look at the dictionary, the word obtrusive means “having or showing a disposition to obtrude, as by imposing one-self or one’s opinions on others”. The synonyms are as interfering, meddlesome etc.
Hence, unobtrusive is just the opposite of obtrusive i.e. non interfering or meddlesome.
Unobtrusive Javascript as it suggest just means non-interfering or non-meddlesome javascript.
If we are able to remove the javascript from the source document and place it in an external file, then we are “almost” there to say we have achieved unobtrusive javascript. The reason we stressed almost there is because unobtrusive javascript is a technique where we separate the behaviour layer from the presentation layer.