Developing iphone application using makkit framework. I have got the map view integrated in the application. Wanted some help regarding performing search in a region (local search) using some api , I have tried exploring google java-script API and ajax api but cannot pin point my solution any help would be appreciated.
...
I have created a PLIST. The structure of the PLIST is like this
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://10.87.145.105:8080/copy/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>title</key>
<string>Sample</string>
<key>title.short</key>
...
Hello,
How to lock and unlock iphone screen using programm??
Regrds
Lipika
...
hi all
I wan the following functionality in my iphone application
User Register/signup form my application to the website(mysql/php)
User login to the site from application.
User write comment on pictures from application.
Please help me out.
...
Hi,
I'm using a UISplitViewController where when the Master VC is loaded (UITableViewController) and a table cell is pressed, it creates the Detail VC (UIViewController with two UIWebViews):
@implementation MasterVC
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UIViewController *de...
I would like to have objects in my view which can be dragged and dropped.
When they are dropped in a certain area they should disappear and some code should execute.
How are objects made draggable in an iphone app? Is it just a button which can be drag enabled?
How would one detect the position of the draggable object? Would it be as ...
Distribution certificate recently expired so had to create another one. Everything seemed to work ok - I made a zipped build with the profile & app file. Sent to a co-worker who installed with no problem.
Sent to another who had a "signer invalid" message and the client I sent to says they get a "do you want to replace embedded mobile ...
I'm trying to transform vertices with a shader program, but i can't understand the results.
I prepared a projection, a view(trans), and model(trans) matrices:
First i have a vertex shader function of: viewproj * position. In a Objective-C program i start with identity multiplicated by a translation and projection matrices and then unifo...
I have parsed .ics file and get the start date as string , the string contains value like this 20100803T130451Z (this is formated date string), I want to convert this string into my required string format ....
My required format of date string is (Tuesday - May 25,2010 (like this))
Can anyone help me? Thanks in advance.....
...
I'm looking for a non-hackish solution for this, so basically -inputView. The part that I'm not sure about is how to make it look like the regular keyboards, from the background to the keys. I realize that I could photoshop an apple keyboard, but this seems like it is a little hackish, especially if apple (probably not but still possib...
I have a app that uses several view controllers. In one instance I need to uses an int (int lives) in a seperate view controller from where it is created. I have tried using it and it throws and error at build claiming "lives" undeclared. I am already importing the view controller where the int was declared. I am stuck on this one.
I w...
Hi all,
So we have recently started developing applications for the iPad for our company. Unfortunately none of us here have ever done any iPhone/iPad development so we are just kind of learning on the fly and winging it. Basically our problem is happening when we try to push a view onto the screen when a table row is clicked. Neithe...
Hello,
I was wondering how I could access the iPhone's Home Screen Image so that I can use it as the background for my application. In short, access the NSImage that represents the home screen's wallpaper.
Thanks.
...
I like how Facebook has the "Load New Posts" at the top of the UITableView. Is that just a header "view" to the UITableView? And how do they load the UITableView so its hidden, i.e. the first cell of the UITableView is aligned with the top so you have to actually scroll down to see the "Load New Posts" area?
Thx
...
Hi there,
I am trying to display a connect dialog for facebook in my app. The dialog view pops open and loads from facebook. But the page shown is one for regular browser, not the version optimized for mobile phones.
Do I need to do anything with my app or on facebook for it to work? Or do I need to provide that form on my server?
Con...
Hi,
I am required to make a app that renders epub format book in iPhone. Is it possible ? I know I can render PDFs using webView. how can I render epub formats ? is there any apple restrictions ?
thanks
...
Hi friends,
I have created tab bar programmatically in the view controller. In my application, Initially displayed the tabbar and it has five tab bar items in the view.Using tab bar, Initially first tab item is selected. Now i want to change the selected items like, fourth item is initially selected.(See the image)
How do i achieve this...
What is the best-practice for placing ads in your table view cells? Here's my code, which works until the banner receives the transitionToNextBanner event, which then crashes my app.
UITableViewCell *cell = [tableVw dequeueReusableCellWithIdentifier:@"BannerAdCellIdentifier"];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWit...
How can I declare a global integer and use it across my app?
...
Hey guys,
I want to populate a scrollView with quite a few different UI elements.
Therefore I thought I would write a method that remembers the current Position in the scrollView and just adds the element to the scrollView at the current Position.
Something like:
- (void)addUIElement:(id)element withWidth:(CGFloat)width andHeight:(...