app

Making a app show inside a GUI in Java

Hello. I have one problem I've been dealing with for this week. You see, I'm new to Java, so that's probably it... Anyways, I've started a project out of pure curiosity. I had it done in Java, but in plain CMD-style, which is not very pretty. It calls one of my ten programs, chosen by the user using "Case". Eg.: If you type 1, it will ...

How to add the java application to the mac installer

HI Any one can get the idea to create the APP file to make my application to install in macos Thnaks in advance ...

Contacts view iphone SDK

When we click on a specific contact in the contacts app in the iphone SDk, we see the image of the person, the name and the tableview with details of the person. I would like to know how to generate that view exactly ? . I tried having a table view slightly below and tried to add a view with the image and the name above the table view. B...

Private iPhone App, without App Store?

I am developing an iPhone app for a private company. It contains business critical data and should only be able to use for this company. Do I still need to go via the App store? Is there not a private way to do this? ...

UITableView: NSMutableArray not appearing in table

I'm new to objective c and iPhone programming. I can't seem to figure out why no cells will fill when I run this code. The xml content displays in the console log and xcode displays no errors. Can any help? - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedNam...

iPhone error while importing .app into iTunes

Hi guys, My application tester has a problem while importing .mobileprovision file into iTunes. As I don't have the device I'm not able to check things out, here is the error message: The provisioning profile "embedded.mobileprovision" could not be imported because an unknown error occurred (0xE800801A). Any idea? He is trying to test...

Does anyone know how to create an authenticated RSS reader iphone app?

Hi, I have been working on creating an RSS reader app for the iphone which allows me to view RSS from an external feed. However the project im working on I need to be able to view an Authenticated RSS feed which is behind a login. Im struggling to write the code to do this. I need the app to ask the user to enter: The url they wish to ...

iPhone APP - native versus external

Hello I am contracting a company to develop an iPhone APP. Here is the issue: part of the APP will deal with signatures that are sent via text message from user to user. I have been told that the native iphone OS is closed and that can't be modified so the only solution to is to build a completely new SMS APP using tools such as phone...

What are the restrictions for the name of an application when submitting to App Store ?

Hello, I have just finished my application for iPhone. I would like to know if it is possible to use the word iPhone in the name of the application. For example, can I name my application iPhonesque ? And for the icon, can I use graphics related to Apple like a Mac Windows (with the three buttons, red, yellow and green) on snow leopard ...

Device Requirements - iphone ipodtouch -- NOT ipad?

Is there a way to specify that the app runs on the iphone, the ipod touch, and NOT the ipad? e.g. modify the info.plist somehow? ...

UIViewerTableViewController.m:15: error: expected identifier before '*' token

I am new to objective-c programming. I come from a C# background. I am having problems with the following code I am writing for a proof of concept for an iPhone App: I am getting a number of compile errors but I think they are all due to the first error (could be wrong) - error: expected identifier before '*' token (@synthesize *lists...

iPhone: App crashes when I click on a cell in table view.

Hi there, Compiling my application works—everything is fine. The only errors I get are by deprecated functions (setText). The only problem is now, is that when I tap on a cell in my table, the app crashes, even though it's meant to push to the next view in the stack. Any solutions are appreciated, if you need any code, just ask. Also...

itunes connect forget something

hi all i've submit my app to approval process, my app is in review, when go see the details i see that to "Bundle short string" or something similar is empty. Will it be rejected ? ? thanks ...

GL_POINTS or quads fastest?

I'm working on a drawing app where there's a lot of textured points. Just wondering if there's a speed difference between the two (i tried both and couldn't tell) Thanks ...

iPhone - packaging multiple app in a single app

Hi, I would like to package multiple app in a single app. So donwloading one app and install that in an iPhone will install 3/4 apps. Something like java midlet suits having multiple Midlets in a single jar file. Is it possible by using multiple target or bundle, aggregate target etc.? ...

How to get the app a Django model is from?

I have a model with a generic relation: TrackedItem --- genericrelation ---> any model I would like to be able to generically get, from the initial model, the tracked item. I should be able to do it on any model without modifying it. To do that I need to get the content type and the object id. Getting the object id is easy since I h...

How would you structure your workflow for a web application ?

Hi ! When designing a web application (or something else), it's good to have a workflow, and it's better to have a well ordered one. Starting with this idea in mind, I'd like to know what is your process from having an idea to maintain this great working project. For me actually, the process is the following one : Having the idea Ch...

how to fetch app data(name, version, etc.) from android market?

As we know, the apps in the apple app store has a unique itunes link, and we can fetch app data about the app from app store through the link. I am wondering how can i achieve this in the android market, just like the website http://www.androlib.com/ did? As long as I know, each app in the android market has a ID, which just like "com...

PhoneGap vs. Titanium

PhoneGap and Titanium allow you build native iPhone Apps based on HTML and JavaScript. Has anyone gained experience with both? What are the differences? ...

How can I find "week" in django's calendar app?

MyCalendar.py Code: from django import template imort calendar import datetime date = datetime.date.today() week = ??? ... The question is that I want to get the week which contains today's date. How can I do? Thanks for help! Ver: Django-1.0 Python-2.6.4 ...