Questions tagged [iphone-sdk-4.3]

Refers to the iPhone software development kit, version 4.3

21 questions
9
votes
1 answer

iPhone SDK 4.3 libav compiling problem

I faced with strange problem. I installed iPhone SDK 4.3 and xCode 4 and now I can't compile libav from ffmpeg for ARMv6 architecture. This is my script to compile it (it works fine for iPhone SDK 4.2): ./configure \ --disable-doc --disable-ffmpeg…
VictorT
  • 783
  • 10
  • 20
8
votes
2 answers

iPhone personalized table Rounded corner table

I don't have too much experience on iphone screen designs but I need to make a table like this: (image), I made an investigation but I didn't find anything. This table needs to have a rounded corner and the user will be able to insert data, in this…
avmauricio
  • 1,008
  • 1
  • 7
  • 19
1
vote
1 answer

How to put programmatically iCarousel in View?

I want four ScrollViews like iCarousel's CoverFlow in View programmatically. My Code is // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { [super viewDidLoad]; …
Lion
  • 872
  • 1
  • 17
  • 43
1
vote
3 answers

How to sort NSMutableArray elements?

I have model class which contains NSString's- studentName, studentRank and studentImage. I wanna sort the NSMutableArray according to studentRanks. what I have done is - (void)uploadFinished:(ASIHTTPRequest *)theRequest { NSString *response =…
Lion
  • 872
  • 1
  • 17
  • 43
1
vote
2 answers

Grouped UITableView with vertical gridlines

I'm trying to create UITableView with vertical gridlines, using method described here: http://www.iphonedevx.com/?p=153 . Everything works fine, until I switch table style to grouped. Vertical lines just don't appear on the table, though overridden…
Dmitriy
  • 1,852
  • 4
  • 15
  • 33
1
vote
0 answers

Navigate between UiNavigation Controller and Uitabbar Controller in iOS 4.3

In my app,I'm able to navigate the controllers from a uinavigation controller to a tabbar item's navigation controller(Inside my tabbar controller each tabbar item has seperate uinavigation controller) but back to navigation controller is not…
nithin
  • 2,457
  • 1
  • 30
  • 50
0
votes
1 answer

How to create UITableView like GRID in landscape mode?

I wanna create the uitableview like this image . loading data from server and assigning the values to columns of Row. I saw the link of stack, but not helpful to me. UPDATE My code: - #pragma mark UITableViewDelegate methods -…
Lion
  • 872
  • 1
  • 17
  • 43
0
votes
1 answer

How to play two different sounds in iPhone sdk?

I have two different wav files which I have to play by calling different methods. I can play one wav file but unable to play the one. My code is In .h AVAudioPlayer *player1, *player2; In .m -(void)correctSound { NSString *sound = [[NSString…
Lion
  • 872
  • 1
  • 17
  • 43
0
votes
1 answer

How to convert data to JSON format, using SBJSON iPhone SDK?

I want to convert the given data to JSON format ... please help me to overcome this problem. Thanks in advance. { data = ( { id = 1307983297; name = "Aafaaq Mehdi"; }, { id =…
Lion
  • 872
  • 1
  • 17
  • 43
0
votes
1 answer

sqlite iphone sdk help?

I am reading the sqlite but unable to get data instead it showing nil values. please refer the given code.... -(void)getDatabasePath:(NSString *)dBPath sqlCatagoryId:(NSString *)catId { if(sqlite3_open([dBPath UTF8String], &_database) ==…
Lion
  • 872
  • 1
  • 17
  • 43
0
votes
1 answer

Strange memory leak with analyze on text setting of UILabel

When I Product > Analyze the clang analyzer gives me a memory leak I do not understand. It says that I am leaking in the second line something what was initialized in the first line of the following code [[testView newScore] setText: [NSString…
dasdom
  • 13,975
  • 2
  • 47
  • 58
0
votes
1 answer

Suggest a proper location to save recorded voice notes

I am developing an iphone app with the capability of recording voice using AVAudioRecorder.Currently I am saving the notes in TemporaryDirectory() recordedTmpFile = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:…
Yogi
  • 3,578
  • 3
  • 35
  • 56
0
votes
1 answer

How to run ios 4.3 app in ios 4.0

How to run application which is build using ios-sdk-4.3 in ios-sdk-4.0.I set build target but also am getting lots of crash. Thanks.
iphoneJee
  • 5
  • 2
0
votes
1 answer

Cancel button instead of edit button in address book

i have added a contact into the address book, i want a cancel button instead of edit button in address book. how can make it programmatically without using ABUnknownPersonViewController. Thanks,
0
votes
0 answers

App crash while i take photo using AVCaptureSession and go another view and again back to that camera view

Hello My App crash while I take photo using AVCaptureSession and go another view when I pop to my camera view app crash after 2-3 second. I use this code for Open camera using AVCaptureSession. session = [[AVCaptureSession alloc] init]; …
Kaushik Movaliya
  • 799
  • 11
  • 27
1
2