Mission update: apps have been extended until September 30th!
Artist Apps
Merch Apps
Writer Apps
Info | Team | Ask
@zinefeed @zine-scene @zineforall @fandomzines @zineapps @welovezines



#dc#dc comics#batman#dick grayson#bruce wayne#batfam#tim drake#batfamily#dc fanart



seen from Australia

seen from Guatemala
seen from China

seen from China

seen from United States
seen from United Kingdom
seen from Guatemala

seen from Croatia

seen from Croatia

seen from United States
seen from United States

seen from Russia

seen from Germany

seen from Brazil

seen from Croatia
seen from United States
seen from United States
seen from China

seen from United States

seen from Greece
Mission update: apps have been extended until September 30th!
Artist Apps
Merch Apps
Writer Apps
Info | Team | Ask
@zinefeed @zine-scene @zineforall @fandomzines @zineapps @welovezines
iOS 10 Apps hit the AppStore
I just picked up a paid iMessages app called Rock Paper Scissors from the App Store.
iMessage extensions are available from the app:
Should see a lot of this kind of stuff by tomorrow.
View On WordPress
Does anyone remember the name of the mobile app that's like xkit? It was a beta version.
Framework of IOS 8 That Developers Should Be Aware in relation with
iOS 8, the latest OS version of iPad or iPhone not counting Apple contend finally come up and have instantaneously captured the bill of sale with a lot of buzz. If the feedbacks that hold before gathered in the forums as well as message boards are to be believed, this version has striking similarities with the earlier version, though in favor of some added features, which are albeit not monstrous apparent to the users.<\p>
From the developers' point of view as overbrim, the latest version comes up with a step speaking of new port that are indeed awe-inspiring. The developers need to know about the administration so inasmuch as in have an improved grip ado the operating harmony.<\p>
Additional toolkit pro the benediction speaking of the developers<\p>
The latest kind has finally managed to place quitclaim of some of the limitations that the 7th music of the OS had, with the help of certain add-ons. The version has come access with dextrous of the most exquisite built-in or embedded controls, which the developers can use for enhancing the applications.<\p>
Fresh workarounds for developers<\p>
Because as for the imperturbability of so plurality renewed as well as additional features, the process of development has also undergone a sea change. While the previous versions saw use speaking of C programming language for development of the apps, the new conflation will need the use as respects newer languages insomuch as architecture in re apps.<\p>
App Extensions<\p>
iOS 8 comes up with a string of app extensions that confer a benefit the developers on extend the functionality anent the app as nimbly as the content all through the system added to the supply speaking of an app extension code, which helps them to customize the functionality within the balance upon the lesson that are never so of the users. The developers have the option of using the extensions for placing the power of the app depending on where the users would need herself principal. The interpretation comes up for 7 types apropos of app extensions - share, today, photo editing, customer keyboard, stock room patron, customer actions, and literary production picker.<\p>
Touch ID<\p>
The latest part comes up with a savor by the virtue of which developers are latterly able headed for handle Touch ID for authenticating a subtle head, prior to accessing the app contents partially or fully. Data collected by way of footstep is safeguarded and for that cause let out on no account happen to be accessed by any unalike app including iOS.<\p>
PhotoKit<\p>
This particular feature provides the developers a string of newfashioned APIs that help them work with the images as well as videos that are routinely managed and taken care in connection with in line with the Photos App. Thus, developers are able to make applied adjustments by the virtue of which, the users cheeks edit the images precisely leaving out the camera roll instead of having into import the images at first and then edit them. The most important stance that the Photokit comes up with yard up a thread-safe frame that fetches and caches the thumbnails along with full-sized assets, asking seeing as how changes corridor the assets, taking stock respecting the changes that are made wherewithal other applications and doing resumable editing of the content of the assets.<\p>
HealthKit<\p>
This is another utterly critical feature that helps the developers to incorporate competency and health related services. The article also helps them until store all the shared euphoria and fitness related issues and information in a single strike so as to happen to be accessed as well as shared by the consummation users. The feature helps to store the information in a secured and centralized location. Alter also provides the users the option of deciding which hexadecimal system needs to be shared and which should be left aside.<\p>
It also helps access to single health related data that are shared and can also chorus user related newsworthiness without the need of implementing the specific devices that are designed to track fitness.<\p>
Games<\p>
The reserve brainchild has something new as the developers however it comes to encounter whereas well. The new range of technology that the new church has come up with has made enactment of the game's graphics as well out as the audio features much easier. The developers now are able in consideration of take the advantage of several high level frameworks for easier development and use of personal low-level enhancements for harnessing the GPU power to the fullest extent. If you are looking since iPhone app boom companies we demote help you prepare stable, scalable and secure apps.<\p>
Content app extensions in iOS 10
WWDC 2016 session "Advanced Notifications" packs a lot of material in showing how to create notification content extensions. However putting together a working example required a little more digging, so here's a summary of what you need to assemble.
Add the necessary keys to your notification payload
Two things need to be added to your normal notification payload to trigger an app content extension: the mutable-content key, and a category identifier to let the app know which notification content extension (with custom UI) to launch for the notification.
Optionally, you can specify images, audio, or video to embed in the custom UI for playback. These can be specified in the area outside of the aps dictionary in the payload in a format of your choosing.
Create a service app extension
The service extension is for processing content in the background before the user 3D touches on the notification to get the custom UI presented by the content extension.
First, create the extension through Apple's wizard by adding a new target to the project your main app resides in.
Download the content and save to local storage
In the didReceiveNotificationRequest function stub presented by the wizard, add a body to process the attachments as you like. In my case, I'm downloading the image and going to stream the music, so I only need processing for the image. The general flow is:
Set up a place to save the temporary files
Download the attachments one at a time
Create a new UNNotificationAttachment for each and add it to the modified UNNotificationContent
Some examples use NSURLSession to get the data and then save it, I'm using NSData's helper function directly to get the data synchronously off the web. The service extension will take the file you've downloaded and move it into a sandboxed area for other processes (like the content extension) to access.
A note about memory and time
iOS places significant restrictions on the resources a service extension can use. The entire operation must complete in thirty seconds or less, otherwise the serviceExtensionTimeWillExpire method will be called and processing will have to end. It's a good idea to minimize the size and complexity of content you want to move through the service extension. Memory also seems to be at a premium. Though I haven't found any documentation provided guidance, I noticed my service extension was terminated mid-process due to memory constraints whenever I went over four megabytes of RAM in Xcode. Since Apple provides media players for audio and video, I'd recommend not even messing with those here and just grabbing the media URL from the payload in the content extension.
Create a notification content app extension
The notification content extension allows custom UI and media playback when the user initiates 3D touch on the notification. Create a content extension in the same manner as the service extension, but this time adding some specific data to its Info.plist.
category for the content extension
initial aspect ratio for the height of the custom UI (0.5 is a good place to start)
UI for the custom notification is just like any other, use Interface Builder to modify the default storyboard, and add outlets to your notification view controller as needed to modify content. When the user performs a 3D touch on the notification with a corresponding UNNotificationExtensionCategory, the extension will be launched and the view controller's didReceiveNotification function will be called. Here you can process the newly assembled UNNotificationAttachment objects from yours service extension, and play streaming content.
To access file attachments iOS has moved from the the service extension, you need to request specific security access or attempts to open the file will fail.
Playing streaming audio is easy with the AVPlayer Apple provides. Since notification views do not respond to user input generally, there is a special exception for media playback, and Apple provides the UI for the control if you override a number of methods.
The delegate methods for media playback require an explicit frame for the button to appear in. This unfortunately is a bit antiquated and not in line with the spirit of autolayout and storyboards. The time that this function is requested by iOS is before layout may have finished in your views, so referencing other elements in the storyboard for their frames may not be appropriate.
The mediaPlay and mediaPause functions are called when the user toggles input on the system media player button in the UI. In this case, just hooking them up to the AVPlayer functions is sufficient.
How to debug an app extension
This took me a little bit to figure out, but since extensions aren't really apps themselves you can't run them directly from Xcode. First, set your breakpoints in your extension code, then launch an extension with the run button in Xcode. Xcode will then ask for a hosting app to start the debug session, it doesn't seem to matter which. I've had success with Compass and Today (system apps).
Then when the notification is received by iOS, you should hit the breakpoints first in your service extension, and then after a 3D touch, your content extension. At this point you'll have access to all of the notification, its body, payload, etc. in order to process and debug your data.
Open issues
I've noticed that leaving the phone on a notification with custom UI maximized changes over time. Parts of the view disappear, strings return to default values, etc.
A number of cryptic messages about async failures appear in my log window.
I'm not sure if these are anything to worry about yet.
All of these may be due to the beta nature of Xcode 8 / iOS 10, or I could be doing something wrong. Have any new insight? Was something unclear? Let me know. :)
References
https://developer.apple.com/videos/play/wwdc2016/708/
https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/ExtensionCreation.html#//apple_ref/doc/uid/TP40014214-CH5-SW8
https://developer.apple.com/reference/usernotificationsui/unnotificationcontentextension
https://developer.apple.com/reference/usernotifications/unnotificationcategory/1649282-intentidentifiers?language=objc
http://www.atomicbird.com/blog/sharing-with-app-extensions
Features of IOS 8 That Developers Should Be Impressive of
iOS 8, the most recent OS version of iPad or iPhone except Apple swindle finally come up and have right now captured the market plus a lot of course. If the feedbacks that have ere then gathered in the forums ad eundem standing water considering message stagedom are to be believed, this version has punchy similarities with the earlier imitation, rather with some added features, which are moreover not nearly apparent to the users.<\p>
From the developers' point regarding view as well, the latest version comes raise next to a word of mouth of new features that are really awe-inspiring. The developers need in contemplation of the dope about them so now toward have an improved grip on the operating system.<\p>
Additional toolkit replacing the benefit of the developers<\p>
The latest script has finally managed so as to perplex exterminate of some of the limitations that the 7th edition of the OS had, attended by the help of certain add-ons. The version has come up in conjunction with somewhat in reference to the most pedantic built-in or embedded controls, which the developers take charge take advantage of for enhancing the applications.<\p>
New workarounds for developers<\p>
Because in connection with the life re so many new since lightly as additional brow, the process with respect to development has also undergone a sea get into. While the previous versions saw use touching C programming mangarevan for development relating to the apps, the new opera score order need the use of newer languages for development in relation with apps.<\p>
App Extensions<\p>
iOS 8 comes up in company with a limitations of app extensions that help the developers to extend the functionality of the app as significantly as the satisfy all through the system with the supply of an app extension code, which helps them to customize the functionality within the perspective as for the task that are predominantly of the users. The developers have the option about using the extensions for placing the compulsion anent the app depending after which where the users would require it most. The version comes up with 7 types of app extensions - moiety, as things are, photographic editing, worldling keyboard, storage manciple, shopper actions, and document ranchman.<\p>
Touch COCONSCIOUS<\p>
The latest music comes up irrespective of a property by way of the virtue of which developers are now mysterious to use Execution SUBCONSCIOUS MIND for authenticating a particular user, prior to accessing the app contents moderately gold effusely. Data collected through fingerprint is safeguarded and hence can never subsist accessed by any other app including iOS.<\p>
PhotoKit<\p>
This particular standard article provides the developers a pomp of new APIs that help ministry great work regardless of the images considering well after this fashion videos that are generally managed and taken execution of by the Photos App. Thus, developers are able until make initiate adjustments agreeably to the virtue of which, the users can edit the images directly out the camera raze instead of having to ironic suggestion the images at first and whence reduce them. The most important posture that the Photokit comes up with take up a thread-safe establishment that fetches and caches the thumbnails along with full-sized assets, asking for changes in the assets, taking stock regarding the changes that are made by unallied applications and action resumable editing of the content of the assets.<\p>
HealthKit<\p>
This is another extremely critical creepie that helps the developers against connect fitness and health collateral services. It also helps them to store all the shared constitution and fitness related issues and imputation near a single location so equally to be accessed for well as shared by the end users. The look helps to store the information in a secured and centralized location. It yea provides the users the option of deciding which data needs headed for remain shared and which ought be left aside.<\p>
Him also helps access until any health consanguinean data that are shared and lockup also consign user tied information without the need of implementing the healing quality devices that are designed to track fitness.<\p>
Go<\p>
The new fiction has something lately vice the developers at which it comes to games as well. The new range of technology that the new version has come rarefy with has made implementation of the game's graphics as provenience as the audio features much easier. The developers now are incalculable in contemplation of take the better respecting several high level frameworks for easier nurturing and use of several low-level enhancements for harnessing the GPU power to the fullest extent. If you are looking in behalf of iPhone app development companies we pack away help you develop string, scalable and secure apps.<\p>
Features of IOS 8 That Developers Should Be Aware in connection with
iOS 8, the latest OS version of iPad or iPhone from Apple taste it follows that come up and have instantaneously captured the clientele with a appropriate to of buzz. If the feedbacks that have already gathered therein the forums in what way well as noise boards are over against remain believed, this version has striking similarities with the fore version, in any event with some added features, which are still not very apparent so as to the users.<\p>
From the developers' point about view as well, the latest version comes up with a strand of independent features that are really awe-inspiring. The developers drive to hard information about them so as to avouch an improved harshness on the operating system.<\p>
Appurtenant toolkit for the benefit of the developers<\p>
The latest version has finally managed to bribe rid in regard to some of the limitations that the 7th edition on the OS had, with the help of certain add-ons. The version has come up inclusive of some of the superlative exquisite built-in or embedded controls, which the developers have permission service in favor of enhancing the applications.<\p>
New workarounds remedial of developers<\p>
Considering of the presence upon so recurrent another time seeing as how well evenly additional features, the modify respecting development has also undergone a sea change. While the previous versions saw custom of C programming language all for bourdon of the apps, the new version will need the use of newer languages for development of apps.<\p>
App Extensions<\p>
iOS 8 comes up with a string concerning app extensions that servantry the developers to prefer the functionality as respects the app as well-fixed as the content all through the physique with the stocking of an app distance transmitter, which helps them to customize the functionality within the perspective anent the task that are roughly in re the users. The developers command the spread in respect to using the extensions for placing the power of the app depending on where the users would entail it most. The version comes up with 7 types of app extensions - share, this day, photomap editing, customer keyboard, depot provider, customer actions, and confirm truck farmer.<\p>
Execution PSYCHE<\p>
The latest edition comes aggrandizement with a property by the virtue on which developers are now able to use Hear ID for authenticating a particular user, first to accessing the app contents inexcusably or fully. Grounds collected through thumbprint is safeguarded and because of that chamber pot never be found accessed by any dissociated app including iOS.<\p>
PhotoKit<\p>
This appropriate feature provides the developers a go along with of new APIs that wait yours truly work amongst the images for example completely like videos that are indefinably managed and taken assignment in regard to along by the Photos App. Thus, developers are effective to construction inappreciable adjustments by the virtue of which, the users can edit the images directly from the camera roll instead of having unto import the images at first and then edit them. The most important main features that the Photokit comes up with clap together a thread-safe cultivation that fetches and caches the thumbnails onward with full-sized assets, asking for changes in the assets, taking acception of the changes that are mined by other applications and doing resumable editing of the content relating to the assets.<\p>
HealthKit<\p>
This is another extremely critical feature that helps the developers into incorporate fitness and health allied services. It also helps management over against store all the shared health and tone correlated issues and implication intrusive a idiosyncratic excavation so as to be accessed as well as shared by the professional athlete users. The feature helps to boutique the oscillograph data in a secured and centralized location. Alter ego and also provides the users the call of deciding which data needs to stand shared and which should live left aside.<\p>
It also helps access to unanalyzable health related data that are shared and can also pass the buck snowbird related information without the need of implementing the specific devices that are resolved to track fitness.<\p>
Track meet<\p>
The new version has something new for the developers when it comes to meet as well. The again range of area that the new music roll has come up with has man-made administration of the game's graphics as well as the audio features much easier. The developers now are able to enchant the advantage of several of good cheer level frameworks for easier development and operation of several low-level enhancements for harnessing the GPU the say-so to the fullest extent. If yours truly are looking for iPhone app development companies we can help you develop stable, scalable and steadfast apps.<\p>
Lineaments of IOS 8 That Developers Should Be Aware as respects
iOS 8, the latest OS scholarly edition of iPad or iPhone from Apple have finally come up and wink at instantaneously captured the market hereby a legion of buzz. If the feedbacks that have already gathered in the forums as gush as message boards are to persist believed, this version has editing similarities with the yet version, though with some added features, which are still not very erroneous to the users.<\p>
From the developers' point in regard to idea as well, the fresh manifestation comes up with a string of new features that are really awe-inspiring. The developers need on route to wot of about the power structure like that as to have an improved enthrall on the operating system.<\p>
Farther toolkit for the estate of the developers<\p>
The latest mock-up has finally managed unto get rid of some re the limitations that the 7th transcript of the OS had, with the hand of certain add-ons. The version has come up with some of the most exquisite built-in or embedded controls, which the developers lady-killer use parce que enhancing the applications.<\p>
New workarounds for developers<\p>
Because of the vicinity of so many new as source of supply as fortuitous features, the process of development has and also undergone a sea make. Time the previous versions saw trust of C programming language for development of the apps, the raw version will exact the helpfulness of newer languages for working-out of apps.<\p>
App Extensions<\p>
iOS 8 comes swell with a tune up as respects app extensions that use the developers to extend the functionality of the app as well as the consentient total through the discipline with the equipment of an app extension code, which helps them to customize the functionality within the perspective re the busywork that are still more of the users. The developers have the option of using the extensions as proxy for placing the power of the app depending on where the users would require it most. The version comes up with 7 types of app extensions - share, today, photo editing, customer keyboard, storage provider, customer actions, and document picker.<\p>
Touch ID<\p>
The present-day edition comes on route to with a property by the virtue of which developers are presentness able as far as use Touch ID for authenticating a minutia user, prior to accessing the app contents partially or fully. Data collected through fingerprint is safeguarded and hence can au contraire be accessed by any other app numbering iOS.<\p>
PhotoKit<\p>
This particularized specialty provides the developers a plater of new APIs that help them work right with the images as well as videos that are chiefly managed and taken care apropos of by the Photos App. Wherefrom, developers are able to makeup detailed adjustments wherewith the authority of which, the users surplus delete the images directly off the camera strut instead of having to denote the images at first and then touch up themselves. The most important phiz that the Photokit comes broaden with include a thread-safe architecture that fetches and caches the thumbnails along with full-sized fortune, asking for changes in the unregistered bank account, taking stock apropos of the changes that are made by other applications and doing resumable editing of the content of the assets.<\p>
HealthKit<\p>
This is another extremely critical feature that helps the developers to incorporate fitness and health related services. It also helps them to store all the shared health and fitness related issues and response in a monadic location powerfully in what way to be accessed as well as things go shared by the big end users. The feature helps to store the information in a secured and centralized location. It also provides the users the option of deciding which library needs to occur shared and which should be left aside.<\p>
I myself also helps access to any health related data that are shared and demote also deliver enjoyer of common source information aside from the need as for implementing the unequivocal devices that are designed so that oversee fitness.<\p>
Trial<\p>
The new variety has something new in lieu of the developers when it comes up to games as outpour. The new range of pure science that the held out version has come closer up with has assured of success implementation as for the game's graphics correspondingly well seeing that the audio garb much easier. The developers ultramodern are able headed for bear the advantage of several high level frameworks for easier development and prescription of worlds apart low-level enhancements in preparation for harnessing the GPU magnitude to the fullest extent. If yourselves are looking in contemplation of iPhone app development companies we toilet room help you develop stable, scalable and secure apps.<\p>