Is it possible to make my fonts in famo.us look like the ones normally in iOS? It seems like my fonts never look quite as nice.
Can anyone tell me if they have faced this same problem?
I've seen buttons shrink and font families change due to an "implicit" small control webkit style. You may want to try adding style properties:
'-webkit-appearance': 'none',
'font-size': 'small',
The font-size doesn't need to be small, but it needs to be something other than xsmall.
Related
I want to make an application, that have big and clear UI (Like GrabTAXI). In app, every element have big font, i.e: Status bar, keyboard etc.
I try to change font, size of every element, but I think it have other way.
Help me, anyone?
I think you should be use AutoLayout in your project.
https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/Introduction/Introduction.html
This is the best way.
Does anyone know what is best way to implement setting concept for changing themes throughout the app including the font colour, font family name and font Size in iOS 7
Thanks in advance
You could make a CSS type Style Sheet class in your code where you define all your font type, colours, etc. using macros and use those macros for setting those fields at the required places. When the user goes to the settings page and chooses a different theme, you just need to handle those macros. Hope it helps.
So I imported multiple google fonts to my Wordpress site, vhawley.com, and when I pull them up on the computer they show up fine, but when I pull them up on my iPhone, (maybe other mobile devices, thats just all I have as far as phones) it looks like its almost being layer on on top of the other! I just don't get it! My link is fine, I've tried multiple fonts, but nothing works. Is this a common problem that can just be fixed easily?
vhawley.com
If you go to the site, I just got done with it, it's my sisters, how do you like it? The colors won't always be like that keep in mind.
Honestly I just checked it out from a few different browsers, that font doesn't look good at all. Why don't you try a different font and see if you still have the same problem?
I would use Helvetica, very clean font right out of the box. Try it out I'm sure you will like it! Also, you can set the font-weight property to make it as thin as you like. try the following:
h1, h2, h3, h4, h5, h6 {font-family:helvetica;font-weight:100;}
Don't forget to remove the google font first!
Is it possible to redefine standard text styles: UIFontTextStyleBody, UIFontTextStyleHeadline, etc.?
Seems that it's not.
As I understand it's similar to the custom CSS sheet in Safari — user select fonts he like, and then he see those fonts in apps, that support dynamic fonts.
Maybe UIAppereance can be to help? It allows you to set fonts and styles for any kind of view/element in any controller.
I'm looking for an UILabel with the following capabilities:
auto resize
support for breaklines
simple rich text formatting (bold,
italic, hyperlinks?)
I know I can do it myself, but I'd guess there should be already an open-source project for something like this, right?
I would recommend using TTStyledLabel/TTStyledTextLabel from the Three20 library. It provides the desired functionally and would save you the time of writing your own.