0
votes
2answers
15 views
How to simulate a user driving a route in a MKMapView?
I need to simulate how my application will look when a user is driving around for a demo. I have a MKMapView, how can I simulate the look of a user driving around which will use th …
0
votes
1answer
15 views
Is there a way to make a custom NSWindow work with Spaces
I'm writing an app that has a custom, transparent NSWindow created using a NSWindow subclass with the following:
- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUIntege …
1
vote
2answers
27 views
How to create line chart in iphone application?
I am creating a budget application in iPhone. Budget for personal incomes & expenses.
Client's need is
I want to see line graph ( like stock market line report ).
Red line …
0
votes
1answer
13 views
How do you position a larger NSImage inside of a smaller NSImageView programmatically?
Let's say I have an NSImage that's 100x100. I also have an NSImageView that's 50x50. Is there a way I can place the NSImage at coordinates inside the NSImageView, so I can control …
1
vote
1answer
42 views
Why isn’t my variable being assigned
Ok I think my understanding of properties in objective c may not be what I thought it was.
In my program I have a singleton that contains my class.
In my class during the init I …
1
vote
1answer
15 views
Allowing interaction with a UIView under another UIView
Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? …
1
vote
1answer
47 views
Core Data with in-memory store
I want to use Core Data as a cache for a larger dataset on a database server.
Not all data will be in memory.
When thinking about this further 2 questions came to mind:
Can fau …
3
votes
1answer
16 views
XCode: Possible to auto-create stubs for methods required by Protocol interface?
Coming from an Eclipse / Java background, one of my favorite features is the ability to quickly stub out all the methods required by an interface. In Eclipse, I can choose 'Overri …
1
vote
3answers
89 views
Is this code Equivalent
I am not a fan of the following construction
if (self = [super init])
{
//do something with self assuming it has been created
}
Is the following equivalent?
self = [super …
0
votes
3answers
38 views
Is it possible to preload all the cells in a uitableview?
Is there a simple way to preload all the cells in a uitableview?
I need to do this in order to change whether or not all the cells are checked. If I just use cellForRowAtIndexPath …
-1
votes
3answers
50 views
objective-c function is not executed well
This function is not executed well.
-(void)sampleItemA:(NSString*)a itemB:(NSString*)b itemC:(NSDate*)c{
NSLog(@"A");
NSArray* ary = [[NSArray alloc] initWithObjects:a, b …
0
votes
2answers
32 views
get current focused window id using objective c
hi developers, how can i get current focused window id using objective c, the return value should be an int, help is highly appreciated! I just need to get the following line worki …
0
votes
1answer
16 views
how to compare dates in iphone sdk?
i have two dates i want to compare which one is greater date how do i do this in objective-c?
-2
votes
1answer
48 views
Objective-c variable initialization problem
I have a header file variable.h where i declare all my global variable.Then i add this header file my wordgame.m .Here i have
several function .The problem is that when i initiali …
3
votes
7answers
74 views
When to use a UIView vs. a UIViewController on the iPhone?
I have always sort of wondered when to use a UIView vs. a UIViewController on the iPhone.
I understand that you shouldn't use a UIViewController unless it's a full-screen view, bu …
