iOS 1D/2D barcode scanner library - ios

I'm trying to fint the answer to a question that has been asked before,but i still couldn't find the proper answer.
I'm looking for a lightweight free 1D/2D barcode scanner library/api/sdk. I've tried
zxing
, but its way too enormous,
scandit
is not free, i couldn't compile
BXMobile
, etc.
Someone who has experience with barcode scanners could propose me a good suggestion for what i should use?
Thanks in advance!
Zoli

The best free one I found was ZBarSDK
http://zbar.sourceforge.net/iphone/sdkdoc/

I've used ZXing before. If you had trouble with it then use the CocoaPods version...
http://cocoapods.org/?q=zxing
It deals with all the includes and everything. CocoaPods really is the way forward.

https://codeload.github.com/cgreening/BarCodeExample/zip/master
iOS7 has built in functionality scanning BarCodes not sepearate sdk is required; if your deployment target is iOS7

I've had good results with ZXingObjC, which as the name suggests is an ObjC port of ZXing, and which is also on CocoaPods.

Related

How create a cocoapod library

My dilemma is stupid but I do not know what to do, basically I do not know if what I show in the image refers to the platform for which you want to develop or to the platform in which you are going to develop
It's the platform for which you are targeting the cocoapod. So if you are making a cocoapod to be used in iOS apps, choose iOS.
If only we could use iOS to build a cocoapod for iOS... ;]
sorry i don't know how can do that, If I have not accepted your answer, explain how I can do it, I think that I already accept it, anyway you let me know if I did it or not

How to apply IBM CPLEX to my iOS projects?

I am new to iOS development!
And I'm working on a project that deals with shift scheduling problems.
I was reading online paper and they mentioned that they used CPLEX to solve their linear programming problems.
So I'm wondering if there's anything that I have to know to run my scheduling constraints on CPLEX but get the results on Swift codes (XCode)?
what you could try also is to use CPLEX in the cloud which would be called from IOS.
You can find an example at https://developer.ibm.com/docloud/blog/2016/03/17/docloud-and-bluemix-demo/
You can try that example on your smartphone and then have a look at how to.
regards
CPLEX offers some libraries written in C, C++.
Xcode allow the use of this kind of librairies so I think you'll be able to work with inside your Swift project.
Hope this helps !

Looking for an IOS version of ShowcaseView

I'm looking for a library similar to https://github.com/amlcurran/ShowcaseView
I want to be able to implement forced tutorials on new users who open my application for the first time. Does anyone know where I can find a library that helps make this easy?
You ca try https://github.com/rahuliyer95/iShowcase
This is a quite similar iOS implementation of the ShowcaseView for Android (https://github.com/amlcurran/ShowcaseView).

With Zxing retiring for iOS, which barcode-scanner to switch to?

I have implemented ZXing to my iOS-app, however I am questioning it's maintainability as not long ago it was announced that ZXing to iOS is retiring:
Retiring C++, Objective C code
I've also read that there might be compatibility issues with the newer phones iPhone 5S..
Also running Xcode's static code analysis on the Zxing-library reveals memory errors, I'm not sure if these errors are false positive or not, but they make me doubt Zxing even more. Further, the performance of Zxing compared to other barcode scanners feels subpar.
So my question is, what is the best alternative? I hear a lot of good stuff about Zbar, however I'm not sure how updated it is either.
iOS 7 SDK now includes a QR code reader, AVCaptureMetaDataOutput. You can read about it at
i​OS 7 NSHipster.
The latest and updated zXing for iOS 6 and later is available here... https://github.com/TheLevelUp/ZXingObjC
It's not going to retire... :)
try zbar sdk, it's compatible with ios 7 sdk
http://zbar.sourceforge.net/iphone/sdkdoc/index.html
or
http://www.scandit.com/barcode-scanner-sdk/features/platforms/
You can try PDF417.mobi. It is commercial but can be used for free for educational and non-commercial purposes.
PS. I'm working for the team that developed PDF417.mobi SDK.

Any available frameworks for SIP for iphone?

Im supposed to use SIP for my application. I went through some documentation regarding SIP like ietf-sip-documentation , siphon , linphone for iphone and ipod. But nowhere they have mentioned about any available frameworks or any such a thing for implementation part. There are lot of things that are yet unsettling to me about SIP. I would love to get a little more clarity on this. Any help would be appreciated.
EDIT: I would want to know whether there are any frameworks available for ios or should we create our own classes for the interface?
Thanks
Doubango framework http://doubango.org/ / https://code.google.com/p/doubango/ also does a nice job here. C-based, so you would probably like to do your own Objective-C wrappers.
How about resiprocate or PJSIP? Both can be compiled for iOS. Do you also need RTP and media handling? If so, PJSIP has that built in as well.

Resources