user-experience

Heuristics for splitting full names

谁说胖子不能爱 提交于 2020-01-05 05:52:16
问题 Splitting a full name into first and last names is an unsolvable problem because names are really, really complicated. As a result, my model, which represents authors and other contributors to a book, includes both name and filingName fields, where filingName should usually be "Last, First" (for Western names). However, as a convenience for my users, I'd like to have my app make a reasonable guess at the filing name when the user fills in the regular name. The user can edit the filing name if

How can I make the fixed cell at the bottom of the table view in iOS?

杀马特。学长 韩版系。学妹 提交于 2020-01-04 05:37:06
问题 I would like to make a fixed cell at the bottom of the table view in iOS similar to that of leaderboard view of HQ trivia iOS app. Like this: 回答1: To give the impression of a fixed cell, you can simply add a UITableView onto a regular UIViewController , set its constraints so that it consumes the whole view, but stops (for example) 60px from the bottom of the screen. Fill the remaining space with a UIView that has the same UI as the cell ... and thats it, the tableview will scroll, and the

Which is better for JavaScript load-time: Compress all in one big file or load all asynchronously?

自古美人都是妖i 提交于 2020-01-02 01:53:26
问题 A simple question that I'm not sure if it has a short answer! Description I have a files of JavaScript that to be loaded in a website here are some notes about them: They are all comes from the same domain (no cross domain loading needed) They are identical around the website. There are several files, like jQuery, and 5 other plugins plus my own application script that is based on them. Their size all compressed = 224KB, ( I combine all the files in one file then I compress them at once using

What is difference between Interaction design, Visual Design, Web design, UX design, UI design, UI development? [closed]

末鹿安然 提交于 2019-12-31 08:13:36
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . What is difference between Interaction design, Visual Design, Web design, UX design, UI design, UI development? BTB, link found below answered for UI Vs UX. https://stackoverflow.com/questions/1334496/difference-between-ui-and-ux 回答1: Maybe just a shorter version: Graphic/Visual

Issue with click-drag-select in text input field also scrolls parent element, webkit bug or feature?

霸气de小男生 提交于 2019-12-30 06:09:41
问题 There's a weird behavior that I've been experiencing with only the webkit browsers since last year, and it is driving me nuts. I've tried doing searches on this, but I don't seem to be able to hit the keywords relating to this issue. I have a html structure as below: <div style="border: 1px solid #000; width:200px;height:200px; overflow:hidden;position:relative"> <div style="width:200px;position:absolute"> <p>long line</p> <p><input type="text" value=""/></p> <p>long line</p> </div> </div>​

Crash Reporter for Cocoa app [closed]

[亡魂溺海] 提交于 2019-12-29 18:03:16
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I'm working on a Cocoa app targeting Leopard and above, and I'm thinking about adding a crash reporter to it (I'd like to think my app won't crash, but let's get real here). I have some mostly conceptual questions before I really get started. 1) How does this work conceptually,

Which Java UI framework provides Mac OSX 10.9 user experience on Windows 7/8? [closed]

跟風遠走 提交于 2019-12-25 18:51:51
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I would like to develop windows applications that has native Mac OSX 10.9 look and feel. Is it possible? In case no such framework is available, what alternatives are available? Can I use any open source UI assets to achieve Mac look and feel? 回答1: I would like to develop windows applications that has native Mac

Best way to implement grid with many columns

依然范特西╮ 提交于 2019-12-24 21:19:53
问题 I would like your opinion / knowledge about a situation I have: I have a Mysql table with approximately 50 columns (where the user can filter whether or not the client has multiple products, etc). And currently I only display 10 columns, and the other filter options are optional. I would like a way to display as many columns as possible so that users can perform the desired filters (they are accustomed to filtering in Excel). I had thought about leaving the Associated column always visible,

How to detect if the current locale uses 12-hour or 24-hour time format?

牧云@^-^@ 提交于 2019-12-24 15:10:50
问题 I searched for an answer to this question, but all I found is how to show 12-hour versus 24-hour time format rather than when to do that. My question is similar to this one: How to determine if current culture/locale uses am/pm or 24-hour time? but I want to know if we have similar structure to CurrentCulture or CultureInfo in Rails. I believe with use of locales it should be possible, but I do not know how to do it or if there is any database explicitly mentioning which languages use

Programmatically Silence iPhone from App?

余生颓废 提交于 2019-12-24 08:19:11
问题 I have to create an app in which the iPhone goes silent upon a button press event. How can you do this programatically? 回答1: There is nothing in official iOS SDK to do this. Imagine someone miss an important call because an app changed settings and made phone silent without user's knowledge. I don't want to download that application for sure. See this related question too. From Apple's documentation People, not applications, should initiate and control actions. Although an application can