Guide To WordPress Coding Standards
WordPress Coding Standards are there to create a baseline for review and collaboration within various aspects of the WordPress open source project and its community. This includes everything from the core code to plugins and themes. Think of it like…
Frameworks of IOS – Part ( I )
Frameworks of IOS listed as follows MediaAccessibility Coordinate the presentation of closed-captioned data for your app’s media files. JavaScriptCore The JavaScriptCore Framework provides the ability to evaluate JavaScript programs from within Swift,…
NSFileManager or NSPathUtilities in Objective-C
A file or file reference URL (as determined with fileURL), this property’s value is suitable for input into methods of NSFileManager or NSPathUtilities. NSFileManager or NSPathUtilities The NSFileManager class provides convenient access to a shared file…
Passing data between view controllers in Objective-C
Passing data between view controllers in Objective-C Passing data between view controllers,When designing an app that makes use of multiple view controllers it may become necessary to pass data back and forth between the view controllers. Passing data to…
Structures and Classes in swift !
Video Available ( Hindi / हिंदी)
Control Flow in Swift
Control Flow in Swift, These include while loops to perform a task multiple times; if, guard, and switch statements to execute different branches of code based on certain conditions; and statements such as break and continue to transfer the flow of…
Concurrency in Swift
Concurrency in Swift has built-in support for writing asynchronous and parallel code in a structured way. Asynchronous code can be suspended and resumed later, although only one piece of the program executes at a time.Suspending and resuming code in your…
The Term Time Complexity in DSA
Video Available ( Hindi / हिंदी)
Objective-C Data Types
In the Objective-C programming language, Objective-C data types refer to an extensive system used for declaring variables or functions of different types. The type of a variable determines how much space it occupies in storage and how the bit pattern…