Featured
-
No Featured Found!
Tags
Record a sound in iOS
To record the sound in ios we can use the code below:-
To record the sound first set the delegate of AVAudioRecorder in AudioRecorderViewController.h File like
#import "AudioRecorderViewController.h"
@interface AudioRecorderViewControl...
Parsing JSON objects using Mantle framework in Objective C
Hi Readers,
Mantle is latest and reliable framework which we can use while parsing JSON objects coming from server end. We can do this by simply initialize a class of type MTLModel.
We can understand framework working with following example...
Crop Image in iOS
To crop image in iOS use the following method.
it will crop the image from the visible frame of the imageView.
-(UIImage *)imageFromImageView:(UIImageView *)imageView rectFrame:(CGRect)frame{
UIGraphicsBeginImageContextWithOptions(frame....