Questions tagged [human-interface]

59 questions
2
votes
2 answers

Can I use Radio buttons in my iPhone app?

My UI designer favors a radio style button for Yes/No. I understand there is no such UI component in iOS and I would use two different custom images for normal/highlighted state. However, what I need to know if Apple would allow me to do it. Is…
DonDyck
  • 1,451
  • 5
  • 20
  • 35
2
votes
1 answer

UISplitView Controller Modification and Human Interface Guidelines

I'm trying to customize the location of my split vew controller, wanting to shift the UISplitView down by 200 pixels, in order to place a banner. I managed to do this by creating a CGFrame in my app delegate, and drawing the The Splitview in this…
ephilip
  • 1,015
  • 1
  • 10
  • 23
2
votes
1 answer

Write to HID with Chip Selection with .NET Console App

Hi I am writing a simple console app that needs to write bytes to MCP2210 USB to SPI Master I found this library over here, seems to do good job with connecting the device and reading the metadata. I am writing message to the board as below public…
HaBo
  • 13,999
  • 36
  • 114
  • 206
2
votes
1 answer

What is the recommended way to show validation messages in an iPhone app?

I couldn't find much information about this in Apple's Human Interface Guidelines. I have a form where input fields are there to collect input from the user, but if validation fails I would like to show the validation message inline just like the…
1
vote
0 answers

Simulating Human Interface Device via Bluetooth

Is there a way to simulate a human interface device (HID) using c# ? What i am trying to do is to connect 2 devices (first one is a pc and will host my application, and second device can be a pc or a mobile device) via Bluetooth. After connecting…
Ozgur Dogus
  • 911
  • 3
  • 14
  • 38
1
vote
1 answer

Can I use snakemake with humans-in-the-loop?

I am very curious about snakemake but I'm not sure it fits my use case, because I have humans in the loop. My process is something like this: Start with a baseline binary classification model Generate 100 examples near the margin (predicted…
1
vote
2 answers

iOS Human Interface Guidance for Changing Table Sort Column

First post. I'm still reading the iOS Human Interface Guidelines and haven't come across this scenario, yet. When displaying multiple columns in a table, what is the appropriate indicator to the user that they can change the column used for…
Michael Mangold
  • 1,741
  • 3
  • 18
  • 32
1
vote
1 answer

If the user is using their mouse left-handed, are .leftMouseDown and .rightMouseDown swapped?

I want to know that the system handles this for me. I really hope it does. If the user is left-handed, and so the left and right mouse buttons' meanings are swapped, then do all NSEvent things related to these two buttons also swap? For an in-code…
Ky -
  • 30,724
  • 51
  • 192
  • 308
1
vote
1 answer

How to use other system icons?

Lately I wanted to include the iOS "star" icon in my NavigationBar. But when I looked at the UIBarButtonItem.SystemItem I noticed that these are limited to 21 icons/images. The "star" and many other icons used in many iOS apps (and even the official…
Noodledew
  • 509
  • 4
  • 19
1
vote
1 answer

Make cell view unavailable color

How to make cell unavailable view like in Settings app on the screen?
1
vote
3 answers

Swift - UICollectionView Displaying Multiple Items In A Row

I am new to both iOS and Swift. I have created a collection view, and it works fine but I want to display multiple items in a single row. I tried but its not working. Can some one help me? Thanks in advance. This is my…
Sathya Baman
  • 3,424
  • 7
  • 44
  • 77
1
vote
2 answers

Using segmented control as a quasi-radio button

I use this segmented control as a mechanism for the user to select an option rather than control any subviews. IMHO this looks better and is more usable that a select picker which would be very heavy on the screen for a small selection like the one…
Abhinav Gujjar
  • 2,570
  • 2
  • 25
  • 35
1
vote
1 answer

What is Apple recommended or suggested position of True or false case in AlertView

I'm building app in which I've no design for alerts so client suggested us to use native Alerts. There are more than dozens of native alerts used in App. So I'm looking for some recommended or suggested from Apple that what will be position of true…
Aleem
  • 3,173
  • 5
  • 33
  • 71
1
vote
0 answers

Function to check whether an HID device is connected using VID and PID in C#

I was asked to write a program to detect whether or not a particular hid device is connected or not using the device's VID and PID. So I came up with this function below : public static HIDDevice FindDevice(int nVid, int nPid, Type oType) …
Ahmad Tijani
  • 392
  • 3
  • 10
1
vote
3 answers

How do i terminate an iPhone application gracefully in code

What is the proper way of ending an application on the iPhone when you are finished with it? thanks, anton
WaterBoy
  • 697
  • 3
  • 13
  • 35