How to use native xib in phone gap? - objective-c

i am using phone gap for an application in xcode.Now i want to create one native xib inside the same project.i will write appropriate code in objective-c.Now my doubt is .how to use/connect the xib into view that i have created in phone gap.Is there any plug in to do this.Help me .thanks in advance.

You would have to write a plugin or find an existing plugin that fits your needs.
PhoneGap Documentation on iOS plugin development

Related

React Native open Source sdk

Hi i am developing a social app using react-native.Most part is done. I want to embed a video calling feature upto 4 participants. Is there any open source sdk which i can use for this purpose?Thanks in advance.
Please try this, I have not personally tried.
https://github.com/EnableX/One-to-One-Video-Calling-Open-Source-React-Native-Application

Xcode 8.3 macOS Project without storyboard

I am trying to find a way to start a project in Xcode 8.3.1 (8E1000a) using .xib files instead of storyboards in Objective-C on macOS.
There isn't a clearcut way to do it, and everything I've seen is iOS using single view storyboard application.
I'm hoping you guys have a fix or at least a quick hack.
Thanks in advance.
A workaround is to keep a copy of Xcode 8.2 around to create new projects. Create the project in 8.2. Develop the project in 8.3.
If you're going to use Xcode 8.3 to create new projects, you'll have to manually remove the storyboard and add xib files to the project. You'll also have to tell the project to use one of your xib files as the main interface file for the project. The following discussion on Apple's developer forums shows you how to do this:
Did Xcode 8.3 update eliminate the basic AppDelegate project template?
Update in 2018: In Xcode 9, the Use Storyboards option is back!
This does not apply to all templates, for example the Game template, but it is in the normal Cocoa App template.
You can't. Basically Xcode is proposing you some templates when you create a new project.
And there are all using Storyboards.
However, you can definitely use xib files in your project.
I myself use xib files because it is so much simpler when your project is under version control.
Storyboard + Version Control = Mess

Importing swift files from one target to another

I have built a custom keyboard and using the app target I want some function to take place in my keyboard target. I'm using a UISwitch in the app. I'm currently using Objective C for my app but I can change it to swift. Please help me!
Regards,
Palash

How to create dynamic icon like calendar icon of ios 7?

I want to create dynamic text changing icon like the calendar app in iOS 7 is there any way to do so?
You can not do this, there is no API allowing this.
Your apps icon is in your application bundle which is readonly and therefor can not be modified.
Sorry brother ... !! There is no API for your requirement. Apple does this only for their apps. Your app icon must be bundled with your application bundle.

navigation flow of kitchensink example in Sencha touch

i'm new to sencha touch.i deployed the kitchensink example application successfully.i want to know the navigation flow(from which file to which file) of kitchensink example .can anyone help me? and i didn't found the launch() in app.js.
thanks in advance.
The Kitchen Sink is using profiles. It means that the app will be displayed differently depending on what kind of device it is displayed on.
You'll find a launch function in app/profile/Base.js which will be called anyway and then you'll also find two other launch functions in both app/profile/Phone.js and app/profile/Tablet.js. The former will be called if you launch the app from a phone and the latter from a tablet.
From there it should be pretty straightforward.
Hope this helps