All Questions
Tagged with ios-frameworks frameworks
47 questions
0
votes
0
answers
44
views
What is the proper way of distributing a closed source framework that depends on other frameworks/libraries on iOS?
I have a closed source framework that depends on other open source project, for sake of discussion let's say Alamofire.
At the moment I am creating a dynamic framework for the closed source code and ...
0
votes
0
answers
89
views
Xcode project does not recognise changes in custom framework
I have created two projects in Xcode:
Framework. It just has one public class and one public method
Xcode project.
I have drag and dropped my framework into project. After that, framework was ...
4
votes
1
answer
1k
views
Why does Apple discourage the use of '@import' in framework headers?
I have a framework target which contains a mixture of Objective-C and Swift source files.
I just upgraded my project's build settings to the settings recommended by Xcode 14.3.1.
One of the changes ...
1
vote
1
answer
4k
views
How to include a local framework in Podspec
I'm creating a Podspec file and need to include two frameworks which I downloaded - one for the Simulator and another for arm64.
I checked https://guides.cocoapods.org/syntax/podspec.html#...
0
votes
1
answer
768
views
How to load/Read Fonts from iOS framework, which are already added in main project in Swift?
Before anyone marks it duplicate, I have already checked
this post but no help.
I have created a framework, and in that framework I've created some UI. Now I want to use custom fonts for that UI, and ...
4
votes
1
answer
603
views
How to preserve directory layout of public headers when generating macOS frameworks
I have a CMake project for a C++ library (current version, CMake v3.21) which I'm in the process of porting to macOS, and I'm looking into generating the library as a OSX Framework.
So far I've ...
1
vote
1
answer
730
views
Access Bundle resources(fonts, images) from iOS objective-c framework
Created MyFramework.framework to share views I am displaying between my applications. Currently, I am using MyFramework in the application "MyApp".
Created bundle named Resources.bundle ...
0
votes
1
answer
26
views
JSQCoreDataKit: Use of undeclared type 'SaveResult' despite finding the definition of the type when clicking "Go to definition"
I am using the framework JSQCoreDataKit.
I've installed it successfully:
In one of the files, it is used as follows:
import JSQCoreDataKit
func saveChanges(completion: @escaping (SaveResult) -&...
0
votes
0
answers
907
views
extern "C" in framework .h works in a project but not works in other
I am facing some weird issue in XCode workspace. I neither have much experience in Objective-C nor in C/C++. I mostly work with Unity3D/C#.
Nowadays I am trying to create few native plugins for the ...
1
vote
2
answers
678
views
How to add dependencies in two custom iOS framework?
I have created custom frameworks to use in my current iOS app.
profileManager.Framework
messagemanager.Framework
requestManager.Framework
Now both profileManager.Framework & messagemanager....
0
votes
1
answer
102
views
Adding .h, .m, .framework and .a file to already built .framework' target's Build Phases
Having a test.framework. I want to add a .h ,.m ,.framework and .a files after .framework file builds.
What I want to achieve is let user choose these files while downloading my framework:
test....
1
vote
0
answers
157
views
Issue while creating dynamic framework in Swift with carthage
Hi Can any one help in resolving this issue.
I have created a dynamic framework in swift. My framework is referring some external frameworks like alamofire, xcglogger etc into my framework project. I ...
0
votes
1
answer
561
views
how to import SwiftBond to Xcode?
I'm trying to import the SwiftBond framework into Xcode: https://github.com/SwiftBond/Bond
I've never imported a 3rd party framework (except Parse, but that is very easy to do), and am fairly lost. ...
7
votes
1
answer
306
views
npm publish module includes iOS framework. When npm install of that module, the iOS framework is corrupt
This is the strangest issue and only happens on one iOS framework in particular (that i noticed) within an npm module.
when clicking on the framework (before npm publish) I see:
frameworkname....
7
votes
5
answers
8k
views
How to develop an iOS framework which includes image resources?
I am developing an iOS framework which includes image resources, I call the methods below in the framwork,
crossImage = [UIImage imageNamed:@"cross"];
arrowImage = [UIImage imageNamed:@"arrow"];
and ...
0
votes
1
answer
121
views
Adding a framework to existing project
I'm adding a 'Cocoa Touch Framework' target to an existing project on XCode 6. Will I be able to use the built framework on older iOS versions? (iOS 6 & 7)
1
vote
0
answers
355
views
Xcode - How to put a Custom Universal Framework inside another Custom Universal Framework
I've seen other questions out there such as this one and I have one here but sadly no answers. I've been researching how to do this and have found three options.
Embedded Custom Frameworks.
Adding ...
3
votes
1
answer
250
views
Prevent step into static library code
I have successfully created static library and using it,
But could not find method / solution that prevent user to step into static library code.
All my .m files are embedded in .a file,
Steps to ...
6
votes
1
answer
2k
views
How to sell an framework with license and how to restrict it by limited users
if i want to put an framework library to sale then how can i put license to it so that it cannot be transferable for iOS/iPhone.
I got few ideas:
I can implement an web service then i thought that ...
3
votes
1
answer
2k
views
How to develop and test an iOS framework in XCode
I have followed a tutorial on iOS-Framework. On the last part "Developing the Framework as a Dependent Project", I have created the framework project and a test project which includes the framework.
...
0
votes
1
answer
8k
views
How to add custom framework in a project?
I am making an app in which I am using BMSocialShare.framework for Facebook sharing. I have add this framework in my project by this step - Add File to "My_project" -> select framework -> add. ...
2
votes
2
answers
2k
views
Is there a private messaging UI (inbox, sent, compose) framework for iOS?
I'm building an app that requires private messaging functionality for users to message each other (e.g. inbox, sent, compose, notification). For example, in the Facebook app or the LinkedIn app, ...
-4
votes
2
answers
654
views
After creating iOS Framework/Bundle NSLog does not allow to log variable Values?
I have created iOS framework using http://db-in.com/blog/2011/07/universal-framework-iphone-ios-2-0/ (open URL in MAC as i am getting 404 not found on windows.)
Now I have kept NSLogs in my Framework ...
1
vote
1
answer
221
views
Should I be using an iOS framework to create a native version of my web application?
I have a twitter like web application written in Ruby on Rails that allows shops to communicate with their customers.
The web application allows the shop owner to upload product photos as well as new ...
35
votes
8
answers
41k
views
Undefined symbols for architecture i386: "_SCNetworkReachabilitySetCallback"
I use xcode4, on a openglES project
i have added code for in-app purchase from the tutorial:
http://www.raywenderlich.com/2797/introduction-to-in-app-purchases
i have added SystemConfiguration....
1
vote
1
answer
199
views
Generic features in iPhone peer to peer App, ideas needed
My student project is to develop a Generic Framework for peer-to-peer system on handhold devices.(iPod)
There is already an existing framework(Gamekit) that build the network and send messages, I'm ...
16
votes
2
answers
15k
views
Adding quartzcore to Xcode 4 for iOS
I have troubles installing quartzcore on Xcode 4 regarding an iOS application. I just can't find the answer: how to do it? Because when I try to add Quartzcore to the targets of the project, it seems ...
1
vote
1
answer
381
views
iOS: Writing a script that runs through an app's UI programmatically
I've been trying to use the FoneMonkey framework for automation, but it's been having issues with UIGestureRecogizer objects. There are buttons tied to those UIGestureRecognizer objects, and this ...
0
votes
1
answer
208
views
iPhone/iOS automation and UIGestureRecognizers
I've been working with FoneMonkey for iPhone automation, and have been having issues getting the framework to detect taps with UITapGestureRecognizer. Does anyone have any experience working with ...
0
votes
4
answers
3k
views
How do I locate/obtain the CoreMedia.framework and begin working with it?
I tried googling it but it's hard to find it. Is there any way to download the CoreMedia framework to include in my app?
5
votes
5
answers
365
views
What is the best strategy for keeping an android and iphone version of the same app
I'm must build the same application for android and iphone.
I tryed rhodes, that is great, but some native ui features are missing...
I would like to know, is there a strategy, sdk, framework, or ...
0
votes
2
answers
868
views
Building XMLRPC.framework: Wrong Architecture?
it's me again with my iOS trouble. I've finally managed to build the master branch of this XML-RPC framework https://github.com/eczarny/xmlrpc which produced an XMLRPC.framework for me. I managed to ...
1
vote
1
answer
2k
views
Building the Objective-C XML-RPC Framework for iOS
I'm fairly new to the iOS SDK and Xcode and I stumbled across this XML-RPC framework https://github.com/eczarny/xmlrpc that I'd really like to use in one of my projects. I downloaded the sources, the ...
34
votes
2
answers
14k
views
How do I weak link frameworks on Xcode 4?
I need to weak link some framework with my target.
But I can't find how to do it...
If I try to run my project on 3.2 iPad simulator i get the following error:
dyld: Library not loaded: /System/...
2
votes
3
answers
3k
views
How can I add NSSpeechSynthesizer Class Reference?
How can i add NSSpeechSynthesizer Class Reference.
I think it is in
/System/Library/Frameworks/AppKit.framework.
However there is no such framework name in framework window when I am clicking add ...
0
votes
1
answer
572
views
Graphs used in Sleep Cycle iPhone App
Does anybody know what graph framework/api/etc. the developers of the Sleep Cycle app (http://mdlabs.se/sleepcycle/) used in their application?
Thank you in advance!
1
vote
1
answer
914
views
Problem embedding a custom framework inside an .app bundle with XCode 4
I've been searching the web (and S.O.) for a while before asking this question. But I'm totally stuck and I don't know how to fix this.
I have to embed a custom framework inside an .app bundle, using ...
10
votes
0
answers
2k
views
Creating a static framework that uses Xibs...how to?
I have a need to create a packaging of UI classes that can be included in an XCode4 integration project by a developer and then get instantiated through the use of a config file in conjunction with ...
0
votes
1
answer
53
views
Vvidget_GG.framework and Vvidget_GS.framework part of OS X default install?
I downloaded some example code to draw a line graph in Cocoa. The example is not running because Vvidget_GG.framework and Vvidget_GS.framework do not exist. I searched in my /System/Library/Frameworks ...
1
vote
2
answers
2k
views
Issues when installing th json framework on xcode4
Hello
I am trying to install json framework. According to installation instructions I have to copy all the classes from json-framwork/classes in my project! I did that and I am getting this error:
...
4
votes
1
answer
7k
views
What UI Framework is Instagram using?
I am interested to find out what UI Framework Instagram is using. Was wondering if anyone can enlighten me on that.
Any advise on this will be greatly appreciated!
Zhen
-2
votes
1
answer
46
views
error with frame work
1) when i am downloading the file from net my frameworks are getting in redcolor font.i cant run that app.pleasetell how to come out of this problem.
2)i downloaded the file for Integrating flickr in ...
8
votes
4
answers
4k
views
Xcode 4: Framework localization not working
I am developing my own framework using Xcode 4, and I'm using it in two sample apps (a console one, and a Mac OS X Cocoa application).
I'm trying to add localization to the framework, so I've created ...
0
votes
1
answer
4k
views
iphone - JavaScriptCore Framework / library
Has any one used JavaScriptCore framework/library in iOS project?
I do not see any such framework available in the existing framework list so I downloaded the source code from Apple Open Source site ...
9
votes
6
answers
3k
views
Whats the most used cross-platform Mobile Application Development Framework today?
I'm like many others here, giving their first steps in the mobile world an not knowing where to start from...
Well, I've seen a few posts here about mobile development frameworks or sdk's, but all ...
0
votes
1
answer
2k
views
Where can I get a complete list of Made For iPod devices that use Bluetooth?
Am working with a client to interface an iPad with a 3rd party device, a weight scale, that transmits its data via Bluetooth. I'm not building a an interface FOR the device, just trying to receive ...
0
votes
3
answers
2k
views
How can I compile MGTwitterEngine using the OAuthConsumer framework?
I've followed the instructions at http://damienh.org/2009/06/20/setting-up-mgtwitterengine-with-yajl-106-for-iphone-development/ to try and get a copy of MGTwitterEngine compiling in XCode.
I have ...