1
vote
4answers
74 views
What is the best way to define string constants in a protocol?
I have defined a protocol that all my plug-ins must implement. I would also like the plug-ins to all use certain strings, like MyPluginErrorDomain. With integers this is quite easily achieved in an …
0
votes
1answer
15 views
download web page data in objective-c iphone ?
How you get web page data and set the data to string ?
somthing like :
NSString *str = GetWebPageData("www.mysite.com/webpage.html");
in the str, i will see "html my web page html" for example
0
votes
1answer
12 views
memory management guidelines on foundation functions
While memory management for the foundation classes are consistent and documented, i was surprised to find (via the friendly EXC_BAD_ACCESS) that Foundation functions like e.g NSStringFromSelector() …
1
vote
2answers
36 views
“Private methods” or static functions in Objective-C. Which one should I use?
When reading Best way to define private methods for a class in Objective-C I end up with a programming style doubt. Which is the better solution (in terms of style) to this problem? To use a category …
0
votes
2answers
11 views
Calling base class functions through derived pointers
( Objective C ) How would I call a base class function using a derived pointer where foo is overridden in the derived class. Essentially the equivalent of this C++ code
base* b_ptr = 0 ;
derived* …
0
votes
1answer
24 views
Objective C - UIActivityIndicatorView positioning
Hi, I have a UIActivityIndicatorView that I create and position in loadView function.
It works fine except that I can see for a split second the UIActivityIndicatorView on the top left corner before …
0
votes
2answers
11 views
How to load video from remote server in iphone?
I want to play a video from a remote server and not from youtube. The video should start streaming in the in built video player of the iphone.
Can anyone help me with this.....
Thanx in advance
0
votes
1answer
19 views
SubViews not properly initialized using IB
I'm having trouble getting my SubViews properly initialized using Interface Builder. I have the following View hierarchy (UIWindow -> BlankCanvasView -> StalkerView). BlankCanvasView is a subclass …
1
vote
4answers
74 views
Can a NSDictionary take in NSSet as key?
I know you can use any object as key for NSDictionary but the problem is will it be able to retrieve the correct value? Support I have an entry where the key = {1,3,5} and value = { @"hello" }. Will I …
3
votes
6answers
153 views
C pointers vs. Objective-C pointers
Hello! I'm coming from an Objective-C background and am trying to expand my knowledge in C. One thing has me confused, however, and that's the difference between pointers in C and Obj-C. As you can …
0
votes
4answers
39 views
converting NSString to precise number for performSelector: afterDelay:
I am communicating with a webservice to retrieve a numerical value that comes into my function as an NSString. This number tells me the precise amount of time to wait until I perform another action, …
1
vote
1answer
21 views
Cocoa: Any downside to using NSSet as key in NSMutableDictionary?
Is there any downside to using NSSet as key in NSMutableDictionary, any gotchas to be aware of, any huge performance hits?
I think keys are copied in Cocoa containers, does it mean NSSet is copied to …
0
votes
0answers
12 views
crop image from certain portion of screen in iphone programmatically
Hello,
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
CGSize contextSize=CGSizeMake(320,400);
UIGraphicsBeginImageContext(self.view.bounds.size);
…
0
votes
2answers
66 views
iPhone reachability checking
I've found several examples of code to do what I want (check for reachability), but none of it seems to be exact enough to be of use to me. I can't figure out why this doesn't want to play nice.
I …
0
votes
2answers
41 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?
…
