Using Webkit for building iOS Native UI [closed] - iphone

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.
Improve this question
Had read somewhere that we can build native UI with the Webkit Framework... Is it possible by any means??
Or the use of webkit framework only limited for Webviews in iOS development?
Thanks in Advance.

You will not be able to use native controls with Webkit. However, if you want native looking controls in a UIWebView, try Sencha Touch.

You can use UIWebView in your native app but everything inside it will be HTML/CSS will all its limitations like security, limited and not that native look-n-feel, etc.

Related

Can I use swift code to create a Desktop Linux App? [closed]

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 4 years ago.
Improve this question
I developed an app for iOS in Swift, and now I have to make the same app in Linux.
I know that in Linux I can't use frameworks as UIKit. What are the better alternatives?
I found different projects that provides a graphic UI:
Swift for GUI
https://www.reddit.com/r/swift/comments/4ig0ic/swift_for_linux_and_graphical_interface/
Qt Swift
https://github.com/Longhanks/qlift
minesweeper in Qt: https://github.com/Longhanks/swiftmine
Pure Swift
https://github.com/PureSwift
Cacao Lib: https://github.com/PureSwift/Cacao
Did you try them? Are there better options?
Other way could be to create a Framework or DLL with my Swift code and use other language to develop the Linux Desktop app. Is this possible?

Compining ios native with phonegap [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I am building a ios app, in that I want a page like in Instagram app share with facebook, twitter etc. For this can I use Phonegap only for this page? Rest of my pages are native ios.
Take a look at Embedding Cordova WebView on iOS. I haven't done this but it says you can use Cordova as a component in your project, so you can call up the webview at any point you want, instead of using it as the whole app.

UICollectionView Or UIButtons [closed]

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 9 years ago.
Improve this question
I have a quick question, related to if these images of apps, uses UICollectionView or buttons in their design:
Thank you for the help.
Most likely buttons, as UICollectionView is only compatible with iOS 6+
The LinkedIn iOS app only requires iOS 4.3+ so it is not using a UICollectionView-- they most likely built a custom view using UIButtons
Most apps out there still want to support at least iOS 5+ so your not going to see many using the UICollectionView yet.
Here are some open source "Collection View" classes that may fit your need (just make sure they also support old iOS versions)
http://www.cocoacontrols.com/search?utf8=%E2%9C%93&q=collectionview

ScoreLoop in iPhone [closed]

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 7 years ago.
Improve this question
Currently I am working on Social Game for iPhone. I want to integrate ScoreLoop inside this games. If anybody know use of scoreloop. Please tell me How to use this ?
Thanks.
Check inside your Scoreloop SDK Folder (the one you downloaded), there will be a Documentation folder, where you can navigate to the ScoreloopCSE documentation PDF file, where all the steps are listed to get Scoreloop integrated into your application.
Refer to this link. I got on how to implement it from answer in this link:
781 can not integrate scoreloop in cocos2d iphone
Hope this helps you.

Does Apple allow html/js apps in appstore? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
Is it considered kosher by Apple to create an app consisting of nothing but a WebView and the appropriate html/js/css files to support it?
I have an app that could be written entirely within a webview and it would be much easier to get from start to finish that way instead of learning the parts of the iOS SDK necessary to do it.
Yes, it is acceptable, but I would recommend looking at PhoneGap, which is based on a similar concept, but provides JavaScript access to native functionality.