0
votes
0answers
15 views
How to delete a row in a sqlite database table ?
I am using fmdb for managing my database. I could not find any example for deleting a row from a table in fmdb. I tried
NSString *sqlStat=@"DELETE from tableName WHERE id=3"; …
0
votes
1answer
15 views
ScrollView with selected page
Hi, I have a scrollViewWith size width=320x10 and height=460.
I add 10 images of size width=320 and height=460 in scrollview with paging enabled.
Now I can scroll the from 1st imag …
1
vote
1answer
28 views
Is it possible to implement the Haversine formula in Objective-C and call it from SQLite?
As I understand, SQLite doesn't have the math functions to properly implement the Haversine formula in straight SQL. I'm thinking this should be possible using an external functio …
0
votes
1answer
13 views
EXC_BAD_ACCESS in didAccelerate on phone move
I'm doing the following:
- (void) accelerometer: (UIAccelerometer *)accelerometer didAccelerate: (UIAcceleration *)acceleration {
if (self.lastAcceleration) {
double i = self.la …
0
votes
3answers
90 views
Should I Open Source my MonoTouch .NET iPhone application?
It's a small application, named Simon Basic Edition, and it is in the Apple Apps Store top 100 in Games > Kids.
The first version is pretty basic, but I made a bunch of improvemen …
0
votes
2answers
66 views
Find a point between two point
I two concentric circles on the screen and I want the circle on the inside to move around while the user drags their finger around the outside of the larger circle. This means that …
1
vote
1answer
70 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 …
0
votes
2answers
40 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
2answers
16 views
TableView oval button for Index/counts
Can someone help me create an index/count button for a UITableView, like this one?
Is there an Apple example, or other tutorial? Thanks, Jordan
0
votes
1answer
18 views
Combining OpenGL ES template and Utility template
Hi,
I would like to have an OpenGL view with an utility application.
What I do:
I create an OpenGL ES application template and a Utility Application template.
I copy the files EA …
1
vote
1answer
14 views
pinch and expand UIView
Hi,
I'm planning to create a UIView with UIButtons and I want that UIView to add in a UIViewScroll. But my problem is that UIView is larger than the actual screen size of the phon …
0
votes
4answers
31 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 …
1
vote
3answers
93 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
2answers
57 views
How do I prevent a specific view from responding to shake gestures?
Hi. I use shake gesture for my application but i have problem!
My application is a multiview application and i want use shake gesture on the view 2.
If i active shake gesture on v …
1
vote
2answers
26 views
Setting variable UITableViewCell height
I am using a custom UITableViewCell, which has some labels. There is one label in the cell where the string length is variable, due to this i cannot set a constant height to the ce …
