Use this tag to ask questions related to iOS frameworks.

learn more… | top users | synonyms

0
votes
0answers
8 views

Using EDK with framework

I am trying to implement Mopub in my game. Since Mopub gives their complete source code, I've to compile it into static library. The Static libraries are giving too much trouble while making the ...
1
vote
0answers
39 views

How to find NSLog “Hit Request String” or “Hit Parameters” in ADMS iOs

I'm on working on a project that using ADMS in iOS and I find something annoying like this in LOG: 2013-05-01 21:20:12.265 MyProject[1550:907] Hit Parameters : { c = { a = " ...
3
votes
0answers
64 views

Parse Framework: Did something go wrong during PFFacebook login? I.e. did the user cancel?

I am using parse framework's PFFacebook for Facebook login in my new project. When i click on Facebook login button it goes to PFFacebook login dialog In this dialog I inserted my credentials but ...
0
votes
0answers
49 views

Secure Persistant Caching in an iOS Static Framework

I am currently in the process of writing a static iOS framework that connects developers to my API and returns to them objectified information at their user's requests. However, in order for this ...
0
votes
1answer
24 views

Xcode custom framework - No known method error

I'm making a framework using iOS-Universal-Framework. All has been working well for a few days, but today I decided to change a method signature. Xcode seems to have cached the old version of my ...
0
votes
1answer
23 views

How do I link the source of a framework in xcode

I have a framework in my project. I recently got git access to code. Is there some way I can link the source to that framework so when I step through breakpoints it will show me code instead of ...
0
votes
1answer
62 views

Jenkins, how can I archive a single subdirectory (without it's whole tree structure above)?

I'm using Jenkins to do nightly build of an iOS static framework. The output that I care about is in this directory: ios/build/Release-iphoneuniversal/MySpecialProject.framework I'd like to use the ...
0
votes
1answer
145 views

How to control the iphone power button programmatically?

I want to control the iphone device programmatically. I mean,when user want to switch off the phone one alert message will come.it will ask the password then only the operation will work. when ...
1
vote
1answer
62 views

PresentModalViewController as soon as app launch from Framework

I am creating a framework, which i will add to some of the projects for accomplishing a particular functionality. And this framework will need to open a presentModalViewController as soon as the ...
0
votes
2answers
75 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. ...
3
votes
1answer
740 views

CocoaPod/Podspec and *.framework

CocoaPod noob question below : I have created a framework bundled with a static library inside, depending on AFNetworking and a resource bundle (based on those two tutorials to create FWKs ...
0
votes
0answers
95 views

Objective C & EgoDatabase Error Opening DB: 14 after coping file to Libary

I have added a Database to my app and I am using the EGODatabase class as I find it easy to use. When this app is started it checks to see if the database has been copied to the App's folders, this ...
0
votes
1answer
107 views

Unzip using libz.dylib

I have read that unzip can be done using libz.dylib library. But I am not able to find out how to do it. I am using ZipArchive to extract the files now. But still I just want to use the default ...
0
votes
0answers
139 views

iOS - Security Framework had been added. But is it being used?

I'm looking at the source code for an application. Underneath Frameworks I see that Security Framework (Security.Framework) has been added, but I can't tell if it's being used. What's an effective ...
2
votes
3answers
137 views

Static library .a file not updating after perform change in .m files

I have created static library project using the line script files. Then I am manually copy .h files and .a file and created a framework. using iOS universal framework method. But it's working fine ...
0
votes
1answer
115 views

Unsupported architecture armv7s error when using Xcode 4.5.1

I updated my app to support iOS 6 in late September. I was able to archive and upload to the store without an issue. Now, I am unable to validate my archive file and instead receive an error: ...
0
votes
1answer
102 views

Making calls to a static library crashes my iOS simulator

Since making the transition to XCode 4.5 and building with iOS 6 SDK my app crashes every time I make a call to a third party framework or static library .a file. Initially when I made the transition ...
3
votes
2answers
1k views

Facebook ios6 completionHandler not called after signing in

I am trying to publish on Facebook using openActiveSessionWithPublishPermissions , so if the user is not logged in he need's to first sign in and then post the message using io6 Facebook native ...
0
votes
1answer
245 views

MKNetworkKit categories not imported correctly when included in Static iOS Framework

I'm building a Static iOS Framework with the templates from jverkoey/iOS-Framework, and in the framework I include the source files for MKNetworkKit. I added the #import "MKNetworkKit.h" and ...
24
votes
2answers
6k views

dyld: Library not loaded different behavior for 6.0 simulator/6.0 device

My app runs fine on the iPhone 6.0 Simulator in Xcode, but when I try to run it on my 6.0 device, I get the following fatal error: dyld: Library not loaded: ...
0
votes
1answer
293 views

Semantic issue: Use of undeclared identifier when adding Framework class references

I've added some frameworks into my project, through the Targets -> Build Phases -> Link binary with Libraries. In particular, I am talking about the AVFoundation.framework. I've also added all the ...
0
votes
1answer
373 views

CMake FIND_LIBRARY vars are set to -NOTFOUND when finding Mac OS X Frameworks

I'm trying to add Mac OS X framework usage to my program, which includes some files with Objective-c++ code. It DOES work with SET (CMAKE_EXE_LINKER_FLAGS "-framework CoreMedia -framework ... "), ...
1
vote
2answers
351 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, ...
-2
votes
2answers
542 views

How to make chat application compatible with both iPhone and Android devices? [closed]

I am working in iOS 5.0 envrionment. I need to implement chat application that will be compatible for both iphone as well as android devices. How can i achieve this? Is there any frameworks available ...
2
votes
0answers
144 views

Why does a target created from a custom xctemplate shows many build settings in the “User-Defined” section

I have created a custom XCode Project Template (.xctemplate), that can be used to build a fake iOS Framework. The Targets created by the template work fine, but there is one thing that bothers me: I ...
-3
votes
2answers
139 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 ...
0
votes
1answer
187 views

Can an iOS static library contain classes/interfaces, that can be used/implemented by iOS code that is using the library?

I apologize if this is a dumb question, or if it does not make sense. I've written some Objective-C code before, but I am not very familiar with writing code for OS X or iOS; I'm pretty much a novice. ...
0
votes
1answer
508 views

How to ignore ld warning about missing i386 architecture for device-only framework

My app employes an external device (hardware accessory). I'm using a framework provided by the hardware supplier, but this only runs on the device (they do no support running in the simulator). ...
2
votes
0answers
143 views

Prefix Static Library iOS

I'm building an iOS static library (as per https://github.com/jverkoey/iOS-Framework). I depend on SBJson and AFNetworking. I would like to include these libraries to avoid version issues and for ...
0
votes
1answer
432 views

CFNetwork.framework deleted by mistake in xcode4

I have included CFNetwork.framework in my app. And later when not required i just right click and deleted by mistake. Now my iPhone app is not getting built saying CFNetwork.h is missing. In add ...
0
votes
0answers
97 views

iOS - warnings during creating iOS framework

I am using https://github.com/kstenerud/iOS-Universal-Framework to create a framework out of my source code. However, when I use the framework on another machine, it gives me several warnings such as ...
2
votes
0answers
194 views

Building SoundCloudAPI Fails with Apple Mach-O Librarian Error

I'm trying to integrate SoundCloud sharing into my project using the instructions at https://github.com/soundcloud/CocoaSoundCloudAPI. In my workspace, OHAttributedLabel, OAuth2Client, JSONKit and ...
0
votes
1answer
181 views

iOS - how to create static libraries for code as well as resources?

I am trying to create a reusable static library for my code. I have gone through several links, but have not found directions for creating a library out of code as well as resources such as images, ...
7
votes
2answers
766 views

Easy way to detect if I am using framework not available to older iOS

After a marathon coding session, where I added too much code without keeping track of everything, I now have an app that probably has some iOS 5.0 and 5.1 specific enums, calls and frameworks, ...
1
vote
1answer
925 views

Error linking armv7 not run IOS DEVICE

i woke up this morning and my file "libz.dylib" was red and i was unable to complile my project. So i try to re-install Xcode 4.3 and i was able to import the library again. Then when i try to run on ...
4
votes
1answer
2k views

Decompile Obj C framework

I want to decompile iOS Twitter framework, if fact I take twitterd file from xcode's simulator, which is precompiled to run on x86 (?), not ARM. As for tool I use ...
7
votes
2answers
3k views

iOS: Clarify different Search Paths

There are three different search paths in XCode Build Settings: Framework Search Path Header Search Path Library Search Path Could anyone clarify what those paths do and what they are used for?
1
vote
1answer
173 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 ...
0
votes
3answers
219 views

Linking static libraries

I have a project that uses several static libraries and I keep getting errors like this one: ld: duplicate symbol _deg2Rad in Frameworks/MyFramework.embeddedframework/ ...
12
votes
6answers
20k 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 ...
0
votes
3answers
287 views

Creating framework in XCode

I am creating a framework in XCode 4. I made this header public (SkypeListener.h): #import <Foundation/Foundation.h> #import <Skype/Skype.h> void start(); void stop(); @interface ...
0
votes
1answer
233 views

vfp.h in the accelerate framework doesn't link on XCode 4.0.2

I'm using the Accelerate framework to boost the performance of a piece of code that I'm running on iPhone. I require two headers from Accelerate which are vdsp and vfp. vDSP works perfectly, however ...
2
votes
2answers
583 views

Native iOS frameworks bringing Wordpress site to iPhone / Ipad

Are there iOS frameworks for speeding up the development of native iPhone / iPad apps for a Wordpress powered website? So, there is already a Wordpress site, and we want to create a native iOS app ...
1
vote
1answer
124 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 ...
8
votes
1answer
7k views

Adding quartzcore to xcode 4 for iOS

I have troubles installing quartzcore on xCode 4 regarding an iOS application. I've searched a lot and seen a lot of posts, but I just can't find the answer: how to do it ? Because when I try to add ...
1
vote
1answer
211 views

iOS: Writing a script that runs through an app's UI programatically

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 ...
1
vote
1answer
160 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 ...
2
votes
0answers
310 views

Web Application Framework Using Objective-C Backend

I have a project where I am building a web application on top of existing back end implemented in Objective-C. My question: Is there a web application framework that lends itself especially well to ...
6
votes
1answer
1k views

Checking for Presence of Objective-C Framework

I am creating a framework right now that can work with CoreData if you would like. The framework has functionality outside of CoreData as well. How can I wrap all the CoreData specific code in ...
-2
votes
4answers
1k 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?

1 2