-
Jak odczytać UUID urządzenia do instalacji w trybie AdHoc
How to get iPad/iPhone UUID required for AdHoc installation? 1) Start iTunes and connect your iPad/iPhone. Click on device name on left navigation. PL: Uruchom iTUnes i podłącz iPad/iPhone. Kliknij na nazwę urzadzenia w lewym menu 2) On the Summary page for your iPhone, click on the word “Serial Number” text PL: Na zakładce Podsumowanie,…
-
How to read an NSArray from a URL without blocking the app
Developing applications that display data from the network often presents a challenge: how to read data from an external file. Parsing XML in Objective-C is quite resource-intensive, so it’s worth considering whether a simpler solution might be to create a .plist file (Property list) on the server and download that file format to the application….
-
How to display localized month names?
The Problem and the Solution While the problem might seem trivial, those without experience in Objective-C could spend a significant amount of time searching for the appropriate objects and methods. To address this, I’m presenting a ready-made solution: The Kalendarz Class The Kalendarz class takes an NSDictionary object as input and returns the corresponding month…
-
How to pass a parameter to a parent view
Passing parameters to parent object in Objective-C Here’s the translation of the Polish text to English: **”In applications with multiple views, we often need to display an additional view where the user can enter parameters (or select from a table). We want to use this information in our parent object. Example: The calculator screen displayed…
-
First steps in iOS app development (as of 2010)
Taking it “step by step” is a great approach. Apple has done a fantastic job of providing developers with well-written documentation, podcasts, and tutorials. The only challenge might be time. Getting Started: Purchase a Mac: Unlike Symbian and Android applications, iOS development requires a Mac computer running macOS. Install Xcode and SDK: Xcode is the…