Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
123 views

What's the most Cocoaish way to show that a text field is invalid?

I have a text field which is validated whenever it loses focus. I want to be able to indicate that the value invalid during input so the user has the opportunity to correct their mistake before ...
4
votes
3answers
3k views

Using a UISegmentedControl in the footer of UIPopoverController

In my iPad app Viewfinder (iTunes Link), I'm trying to recreate the look of a UISegmentedControl as seen in the footer of Keynote's Build In popover: The iPad HIG suggests using a bottom-aligned ...
4
votes
3answers
3k views

JDialog cancel button

How can I set a cancel button in a Swing JDialog, i.e. a button whose action is performed automatically if the user presses the “Cancel” key on the keyboard? The counterpart is offered for a default ...
3
votes
1answer
52 views

Text tabbed interface new to Lion

I like the new tab interface displayed in the Lion “About This Mac” window. It's not gorgeous, but I think it's extremely useful in presenting information where icons would most probably fail to do a ...
1
vote
0answers
62 views

Human Interface Guidelines for Contacts

Can anyone clarify or point me to an article from Apple explaining what messaging should occur if you are accessing the information in a user's address book and/or sending it to a remote server? ...
1
vote
2answers
338 views

UITableViewCell + standard disclosure indicator + secondary UIButton + HIG violation

I've a simple question but I cannot find a clear answer around the web. Suppose I have a custom UITableViewCell With the default disclosure detail button that take to a detail view controller. ...
1
vote
1answer
281 views

Conditionally disable backgrounding for an iOS app?

I am working with an app that is powered by data fetched from a server. The fetching logic is fairly robust and fault tolerant; most connectivity errors are automatically retried, which usually works ...
1
vote
2answers
2k views

change position of cancel button in UIAlertView?

I noticed that when I delete an app from my iPhone home screen, the alert view that appears shows a Delete button on the left and Cancel on the right. However, when I build a delete function within my ...
1
vote
1answer
506 views

Apple iPad HIG?

Is it against Apple Human Interface Guidelines to make an iPad app that does not rotate to different orientations, if it is intended for kiosk mode operation?
1
vote
2answers
2k views

Is it possible to use a Segmented Control to change the view?

i want to use a segmented control instead of a UITabBar controller to change the view. Is that in accordance with the HIG? If yes, how can I do so? What template should I use for my project and what ...
1
vote
2answers
418 views

Are there any guidelines for appropriate use of the Black HUD UI in OS X?

Does anyone know what the HIG are saying about the black HUD UI in OS X?
0
votes
0answers
37 views

Is iTunes 'Artists Icon' OK to use in an application

I need an icon to represent (musical)artists. The Music/iPod app on the iPhone/iPad uses a silhouette of Bono wailing into a microphone: But I am unclear as to whether it is acceptable to use this ...
0
votes
3answers
166 views

Does subclassing a UIAlertView to accept user input go against the HIG?

I've seen a lot of answers out on SO detailing how to accept user input on an UIAlertView, but I was wondering if doing so violates Apple's iOS Human Interface Guidelines. According to the section on ...
0
votes
0answers
18 views

Uipicker labels conforming to HIG

Can someone please advise if it is acceptable to place labels above the uipicker to act as title headers for the individual wheels additionally is it acceptable to add "mm" to every value in one ...
0
votes
2answers
85 views

Is this a valid justification for quitting an iPhone app programatically?

I know this question has been asked many times and we have gotten this link as an answer from Apple: http://developer.apple.com/library/ios/#qa/qa1561/ However, recently, I met with this case below. ...
0
votes
0answers
13 views

HIG for the web?

The Apple HIG is a really useful and thought provoking document. As well as setting the ground rules for what you should and shouldn't do, it has some interesting discussion about general UI usability ...
0
votes
0answers
221 views

iPhone UITableView drill down — adding levels dynamically & HIG

I'm working on an app where users can dynamically add items hierarchically in a drill-down style UITableView and I'm wondering if someone more conversant with HIG issues can help me here. I'm using a ...
0
votes
1answer
304 views

UIToolBar left/right side button text

Apple's "human interface guidelines" is clear about which side (left or right) you should place certain tool-bar buttons: CANCEL (left).... and.... DONE (right). Which side (left or right) should ...
0
votes
2answers
584 views

Popover inside a popover

I made a very big mistake, in some instances there will be two popovers on the screen at once. What is the probability of getting my app rejected?
0
votes
4answers
151 views

For list controls, should find-as-you-type match at the start of an entry, or anywhere in an entry?

I have a list control in GTK+ (a gtk.TreeView with one column), with "find-as-you type" enabled (so typing any text will open a small search field for searching through the list entries). Now, if the ...