Hi
I have a class DataObject as
Header :::
#import <Foundation/Foundation.h>
@interface DataObject : NSObject {
NSString *erorrMessage;
BOOL hasError;
NSDictionary *dataValues;
}
@property(nonatomic, retain)NSString *erorrMessage;
@property(nonatomic)BOOL hasError;
@property(nonatomic, retain)NSDictionary *dataValues...
How to get image from server using JSON parser.
plz if possible post piece of code.
Thnks in advance..
...
Hi,
I am very much curious about Nike + iPod app look and feel.
They have selected uitabbar buttons red in color
The tableviewcell selection style as red in color.
The disclosure indicator is also red in color.
The solution in my mind for two of these is:
I can use a red colored arrow image to use it as accessory view.
I can flip...
Hi, I have developed an application for iPhone and iPod touch. Now i want to install that app on the device. I have created a provisioning profile for the particular device.
My query is that, now to install the app on a device I have to add the provisioning profile of that device to xcode and after selecting the developer in build op...
Hi,
This is a hypothetical question. If one would develop an iPhone/iPad (Universal) odds application, whould apple allow this to the appstore?
This application would not let you bet on odds directly, but would collect odds from different odds sites and show them to the user. The user can launch these sites and make their bets there (no...
Hey guys,
I have a UITableView and I am having an issue with whenever I try to click on the Cell. When the cell is highlighted it puts some test on top of the text that is already on the cell make the text on the cell hard to read. This only happens while I have the cell highlighted.
Please help me with this issue.
Thanks
...
i have an NSObject with 2 property's
@interface Entity : NSObject {
NSNumber *nid;
NSString *title;
}
i have 2 array's with Entity's objects in it and I want to compare those two on the nid with a predicate
array1: ({nid=1,title="test"},{nid=2,title="test2"})
array2: ({nid=2,title="test2"},{nid=3,title="test3"})
the 2...
Hi all
I am resizing the navigation bar when my application switches into landscape orientation.
But i am not able to set the content size of navigation bar according to its height.
Landscape image :- In this image the top left bar item and title of navigation bar are not resizing when it switches into landscape orientation....they sh...
Based on a college-project I'm trying to realize a relatively simple game (Poker) where an iPad acts as Server and multiple iPod-Touchs connect to it as Clients.
Gamekit seems to drop out, since those old ipod-touch-devices don't have bluetooth-support.
Are there already some Frameworks out there simplifying the process, or do I have t...
Would someone be so kind as to explain what is happening with the statement below. I an a bit puzzeled by <MKAnnotation> between id and mp, it not something I have seen before.
id <MKAnnotation> mp = [annotationView annotation];
many thanks
gary
...
Hi,
I have created a UIViewController and a UIView with two UIButtons in it.
self.view = [[UIView alloc]initWithFrame:CGRectMake( 0,0,320,480)];
self.view.autoresizesSubviews = YES;
self.view.backgroundColor = [UIColor redColor];
UIView *view;
view = [[UIVew alloc]initWithFrame:CGRectMake(0,0,320,480)];
view.autoresizingMask = UIVie...
Hello,
I'm working on an iPhone app that will use Vimeo Simple API to give me a listing our videos by a certain user, in a convenient TableView format. I'm new to Parsing XML and have tried TouchXML, TinyXML, and now NSXMLParser with no luck. Most tutorials on parsing XML are for a blog, and not for an API XML sheet. I've tried modifyin...
What is the recommended API for connecting to a HTTPS server? Ideally it should provide some way to handle the case if the server has an untrusted certificate.
...
I was able to play the audio in background of the application in iPhone. However I would like to know if there is any service that enables the playback of audio after the user exits the application?
I know that SDK 4.0 promises multitasking and background processes of the application. But i would like to know if this is enabled for audio...
Hi friends,
I have a folder structure at server side. Inside the folders there are files of all format like .txt, .pdf. I get the structure in XML format.
Now I want to create the same folder structure that is present in server side at my iphone documents folder with only the names of files inside it and not the content of the files.
...
On the iPhone, if you are currently in a TCP connection with a remote peer using 3G. If the user moves to a place with Wifi connectivity, does the iPhone OS automatically modify your connection to go through WiFi instead (assuming remote peer is also accessible via Wifi)? I ask because the docs point out that WiFi is preferred over 3G du...
how can i know what tableview cell was selected?(being in the detail view)
The problem is that.
I have an table view controller. Here are parsed from the internet entries to the table.
So it's a dynamic tabe view that loads from internet. I will not know how many entries will be in the table so i will not know what details view to call w...
Check it:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSLog(@"Checking login--user value is %@", [defaults valueForKey:@"userID"]);
if ([defaults valueForKey:@"userID"] == NULL){
LoginViewController *loginController = [[LoginViewController alloc] initWithNibName:@"LoginView" bundle:nil];
[window addSubview:...
Hello,
First of all, I'd like to say I'm not using any off-line feature from HTML5.
I have a web-application which runs on the iPhone. When viewing it from safari, everything works quite well.
But when I launch the application from the home screen (to remove the navigation bar), it can be really slow.
I checked the logs in Apache and...
Hi, I manage to localized app icon and app name for different languages.I found the icon changes depending on the language setting on the iphone only when the first time when you install the app from xcode.
after that, if i change the language setting, the app icon stay the same but only the app name changes to the localized one.
Any...