Siba Prasad Hota

less info
3,374 reputation
1621
bio website
location chennai
age 24
visits member for 1 year, 4 months
seen 4 hours ago
stats profile views 409

Hi ,

I am Siba Prasad, I have completed B.tech from BPUT.

I am working as Project manager for Mobile-Team.

I have done several project for Windows, Blackberry, Android,IPHONE, IPAD, and Mobile websites.

I m having knowledge in Objective-C, COCOS2d-x, C, C++, JAVA, .net, HTML, HTNL5, CSS, Jquery, JavaScript

Contact me : sibahota1989@gmail.com , mob:+91-8122712601


May
31
comment ios - How to load data from JSON url in UITableView?
Okay , then Just use the rest , Just use as below Nsarray *myarray = [parser objectWithString:json_string error:nil]; statuses=[myarray mutableCopy]; Then reload the Tableview.
May
31
comment ios - How to load data from JSON url in UITableView?
Did you had a chance to try my answer, i tested here and its working fine for me.
May
31
comment How to take input from UITextField and put it into and add a TableViewCell
You have to reload tableview after adding the data to array.
May
21
comment Tableview doesn't fire cellForRowtIndexPath method
Check this answer on How to create tableview programatically : stackoverflow.com/questions/4356695/…
May
21
comment Tableview doesn't fire cellForRowtIndexPath method
@SigfridMaenhout if you are not using Xib file , then why you are Using IBOutlet ? insted of IBOutlet UITableView *tableDagprogrammaDetail , use UITableView *tableDagprogrammaDetail and in ViewDidload write the Code to create Tableview Programatically.
May
21
comment Tableview doesn't fire cellForRowtIndexPath method
@MarcMosby Thanks for your appreciation , i just wanted to help.
May
21
comment Tableview doesn't fire cellForRowtIndexPath method
download the project : 4shared.com/zip/FI1HJV1c/DagprogrammaDetail.html
May
21
comment Tableview doesn't fire cellForRowtIndexPath method
Check my answer its working fine , I just used your code only. The problem with your code was you didn't allocated the array Properly.
May
21
comment Tableview doesn't fire cellForRowtIndexPath method
Do onething , instead of calling your API in ViewDidLoad , call that in ViewDidAppear And then Reload the table view. ex: [yourTable Reloaddata] Also add Break point in all Delegate/ datasource method of tableview
May
14
comment Getting JSON data From a URL Which contains .SVC?wsdl file in iOS 5?
Can you Submit your Code ? And explain what is the problem , i will try to help you out.
Apr
15
comment In-App Purchase – Auto-Renewable Subscription demo?
@fnf I given the answer for Process of in-app purchase and informed to change subscription Type while creating the in-app purchase ID.Hope you worked with in-app purchase before. If yes then you should know, while creating in-app purchase its asking for type. If you didn't then try to create one and see.
Mar
20
comment iPhone timer task for long processes
You can downloaded the Code from here : cogzentappz.com/demo/iostutorial/BackgroundtaskChecker.zip and test. Hope it will work for you. Happy Coding.
Mar
19
comment XML into JSON conversion in iOS
Use @Ryan's Code , Working fine.
Mar
19
comment XML into JSON conversion in iOS
I tested your Code , Working like a charm , Thanks for answering.
Mar
19
comment iPhone timer task for long processes
i don't think Simulator would be a Problem, Even its Working perfectly for me in simulator also. I m trying my best to sort it out.
Mar
14
comment iPhone timer task for long processes
Can you Post all Your Codes, And Edit your Question Again ? it will be helpful for us to find the issue.
Mar
12
comment iPhone timer task for long processes
Yes You can use Timer with Repeat YES/NO
Mar
9
comment How to add sub cell in Particular UITableviewCell Programmatically
Yes its Possible But You have to Take Multiple Sections. Check This Link : stackoverflow.com/questions/10736524/…
Mar
6
comment i want the size for 5 minutes 300kb for an audio file
check this link : developer.apple.com/library/ios/#samplecode/… You can convert Audio from wav to mp3.
Feb
25
comment How to draw a straight line on an iOS map without moving the map using MKmapkit
check this answer : stackoverflow.com/questions/14782850/… , just disable Userintearction on mapview and create a transparent view on your mapview , and use pan gestures to draw lines.