Headers messing up on iphone [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a website where the headers are messing up on iphone, the header tags are rendered using #fontface.
Ive no idea what can be going on as it doesnt happen on the ipod touch nor ipad. What im asking is has anybody had this problem before? could it be a character encoding problem?

Having the same issue with my iPod Touch 3G running iOS 5. It's not reproduceable, after closing a website and it only happens when I start zooming. I'd say it's a bug in iOS5. Never had this before on earlier releases.

I've added a conditional stylesheet to replace any tags with web standard fonts which has worked, the problem now is my background is being replaced as a tiled button.

Sorry for opening an old question, but I just had a header issue with my site, turns out some mobile browsers give header tags a bold font-weight, so if you can't give a bold style with your custom font you have to set the header tags (h1, h2....) to font-weight:normal; or font-weight:400; and it fixes the issues.

Related

iPhone or MacBook stock images for screenshot [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm sure there's an obvious answer to this and I'm just using the wrong search criteria. I don't know where else to ask this!
I have an app that runs as an iPhone app and a Mac desktop app. All over the web when someone wants to showcase an app they have images of the app screenshot in showing on the screen of an iPhone. This iPhone almost always has a light shadow going over the top right of the screen. For example http://www.sparrowmailapp.com/iphone.php. This is just an edit of any number of stock iPhone images that can be found by Googling, for example http://images.apple.com/iphone/design/images/hero_front.jpg. However, it has this consistent shadow. This tells me that somewhere there's a PSD that has the iPhone casing, with a blank area in the middle to copy your screenshot into, and the light shadow that stays as the top layer.
But where can I find this? Is there some kind of generator on the Apple site? Has someone published an official set of assets somewhere? I am looking for both the iPhone 5 version and MacBook version.
Thanks
This is off topic. Though login to your developer account and find marketing resources for the device psd's.
Edit:
Here is the URL

Facebook IOS app in and outs [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need some help regarding the ios App, i want to know that how facebook app is rendering its pages, is it UIWebview or something else, is they are just rendering the HTML5 page by using UIwebview or its Custom UIViews. So if they are Custom UIViews how they manage the auto populating data mechanism.
Is there anybody, who can enlighten the in and outs of facebook ios app.
Thanks
The older version of the facebook application uses UIWebView to display content. According to the new version, it now uses native views and gets the data from facebook via an API.

iPad and Xcode help [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
hi and tnx in advance for support.
I need to create simple iPad application.
Structure is:
screen with two big buttons / image if posible in middle / center of screen
This two buttons will separate my portfolio on two segments.
After selecting one of buttons on first screan, page / screen will show with links / buttons to 4-5 child level screens.
I am totaly new (read noob) for mac and Xcode, so any help will be more than helpfull to me.
also if you know some easy way ather than using Xcode please suggest it to me ....
thank you very much in advance
Perhaps you could learn Processing.js to create a Web App? Additionally, you could then learn how to make a simple iPhone App that contains a WebView and your Processing.js code.
Or slightly more complex you could use iProcessing.

Custom Keyboard in iphone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i have to develope an application in which
i have to add two buttons within the keyboard
i need to know how to implement it.
please help me.
i will be thank full.
I have been watching the iphone classes that are in itunes from Stanford University. They had someone from Apple there and asked this question and they said that you cannot change the keyboard except to change the return key to one of the other settings for it. I do like what Facebook and Tweetie (the guy that wrote this also talked in the iphone classes) have done to add buttons. They stated that overall Apple wanted a consistant look and feel to things like the keyboard.
You can't do this. You can do what the Facebook and Tweetie apps do, though, and add an additional set of controls right above the keyboard.
You can do it with the latest iOS version. Check the inputView property of UITextField for details.

Is it possible to do this on the Android and iPhone? (for mobile developers) [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Embed a browser inside the application.
When the user navigates to a desired page, he pushes a button to "set" this page.
Now, the application gets the URL of this page!
How hard is this to do on the Android and iPhone?
The iPhone has the UIWebView class
see Here
I'm not sure about Android though.
On Android, yes it's possible. See WebView#getUrl.
You can try 'WebView' in android.
Refer to WebView.
You may use this.
webview.loadDataWithBaseURL(baseUrl-add some fake url here, data, mimeType, encoding, failUrl-add some fake url here);