0
votes
2answers
24 views
How should we be obtaining user permission for our server to post tweets to Twitter, using OAuth, from the iPhone?
Hello,
For an iPhone app, I'm working on a feature that allows users to make automated tweets which are posted by a server (if they'd like to allow it). I've chosen to use OAuth for Twitter …
0
votes
1answer
19 views
Send programatic email through Objective-C
In an iPhone app I'm developing, I need to send an email programmatically (read, not allowing the user to see where the email is going) similar to the PHP mail() function. Is there a way to do that?
…
0
votes
3answers
41 views
Why can’t I capture a screenshot of MPMoviePlayerController?
Hi guys,
I need to capture a screen shot of a video playing in mpmovieplayer controller, but all I get is a red screen (I made the coverView with red background and 0.5 alpha).
Here is the code:
…
1
vote
6answers
71 views
How can I send two arguments in a selector method?
In the following, how can I send two arguments in togButton method? I tried, but it did not work.
[button addTarget:self action:@selector(togButton:)
…
0
votes
2answers
54 views
how to use NSRunLoop in objective-C ?
Hi all,
how to use how to use NSRunLoop in objective-C and wait for some variable to change value ?
Thanks
0
votes
1answer
29 views
Displaying topic specific tweets in Twitter
I'd like to integrate Twitter into my app but keep the tweets specific to the app topic. For example, if the app is about recipes, all tweets on the built in Twitter client will be about recipes. …
0
votes
2answers
38 views
Serializing objects in Objective C
When a user uploads something via my app, I create an ASIFormDataRequest object to make the POST.
When the user is offline, I would like to write a ASIFormDataRequest object to file and send it …
0
votes
3answers
59 views
iphone Development - analyze error
NSString *temp = [self randomBallPick:temp];
the following error:
Pass-by-value argument in message expression is undefined
why?
-(NSString*) randomBallPick:(NSString*) oneFilename
{
//create …
1
vote
1answer
51 views
Blue mail dot in SDK?
Is the little blue mail dot the iPhone mail program uses to signify new mail, on each tableview cell, available in the SDK? Or, it is available for download some where on the Internet?
0
votes
1answer
17 views
Strange delay with Navigation Controller behaviour
I have the following set up in a navigation controller.
The root is a list of categories (banks, hotels etc) and each category has a child view below it containing a table view of items (Bank A, Bank …
0
votes
2answers
20 views
How do you hide the reorder control in a UITableViewCell without using reload?
In my app, when a user touches a table cell, the cell is disabled and the cell's reorder control disappears. If they touch it again, the cell is enabled and the reorder control reappears. The way I'm …
4
votes
11answers
228 views
What describes nil best? What’s that really?
Currently I understand it as a kind of "empty object". But what's it really?
0
votes
3answers
51 views
can we property/synthesize to a sqlite3 *database object ?
Hi,
I have code snippet,
which is like this...
#import <sqlite3.h>
@interface DatabaseClass : NSObject {
sqlite3 *database;
}
@property ( nonatomic, retain ) …
-2
votes
2answers
82 views
decode utf8 on iphone
Hi ,
i have NSstring that contain encoded utf8 i want to decode it.
how can i do that?
i try this but it didn't work
NSString *decodedString = [NSString stringWithUTF8String:[encodedString …
0
votes
2answers
33 views
Sharing image between two view
I am trying to learn something basic and very important to develop decent iPhone apps. But I don't know enough to understand what I am not getting. Here's the question:
I have a window project, with …
