I am trying to add an open source ios app written in objective-c to my ios app. What would be the best way to do that? Shall I use multiple story board or I is there any other way I can do that?
Related
I was wondering if it is possible to change the icon of an iOS app without recompiling it every single time. I would like to create a personal app where I can change the icon very easily.
There is a new API that was announced with iOS 10.3 that can help you with this, otherwise, it is not possible. Here is some sample code on how to use it: https://github.com/steventroughtonsmith/AlternateIconTest
Is it possible/do you know any possibility to visualize the source code of an app? Because I'm working on something and I have got an app that does exactly what I want mine to do, just in a completely different way. Basically, every app on the AppStore has to be written in Xcode, right? So how do I visualize the code?
Thanks in advance!
The developer needs to share the code with you if you want to get the full code.
You can't extract the code from the .ipa itself (which is essentially the app)
Moreover, not every iOS app is written in Xcode - you have other SDK to write Swift and Objective-C with and more apps that you can write cross platform app with that eventually produced the .ipa file.
I'm developing a watch application using Xcode. And the actual iOS app is already implemented using Kony. And now I'm trying to add this watch app to the iOS app.
But the problem is the IOS app is developed in Kony. And I have written some code in Xcode with in AppDelegate.m and ViewController.m(RootViewController) of IOS bundle to communicate with watch and pass some data.So Everything is working fine.For this I created a new application and I did that phone to watch communication and watch app implementation.
Now the difficult part is I have to integrate or copy the code whatever I have written in sample app using Xcode to that Kony application.
Means Now I have to add this AppDelegate.m and ViewController.m code in to Kony Code which is developed by Kony IDE.
So how to integrate whatever i have done in Xcode build to Kony build ?
Problem Statement
How to integrate my app delegate and View controller code in KONY app?
Answer
We understand that you are integrating AppDelegate methods in Kony App.
Using Kony you can implement AddDelegate methods using following steps.
Kindly replace the attached AppDelegateExtension folder into your VMAppWithKonylib.xcodeproj
Add the statements in the didFinishLaunchingW/Users/kh1949/Desktop/AppDelegateExtension 2.zipithOptions method present in SampleAppDelegate.m file.
Regards,
Guru Murthystrong text
I want to develop app using baker framework, but I don't want to open my app in newsstand.
I want to open my app as regular app.
In baker framework demo I added property in Plist Application presents content in Newsstand equals to NO.
Now my app is open as regular app, but the problem is downloading issue is not working, could anyone help me out what i need to do for that.
there is a lot more about this than just changing the plist. The whole download infrastructure in the Baker framework is built around Newsstand. If you disable Newsstand, this stops working.
I want to get the selected text from any application. Is there a way to send it to my app? In android there is a Share button, but how does iOS do it? Or there is another way
You can possibly use the UIPasteBoard API for your needs: https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIPasteboard_Class/Reference.html
There is, however not any way apps can communicate with each as apps are sandboxed on iOS and not open like you're used to with Android development.