TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Sep 2016 |
Maintained by Alexey Belkevich.
Tired with block != nil
check? Too many code lines to run block on dispatch queue? This macros for you!
Add pod 'macros_blocks'
to Podfile
Call Block Safely
safe_block(block, arguments);
is equal to
if (block)
{
block(arguments);
}
Call Block on Main Queue
main_queue_block(block, arguments);
is equal to
dispatch_async(dispatch_get_main_queue(), ^
{
if (block)
{
block(arguments);
}
});
Call Block on Custom Queue Asynchronously
async_queue_block(queue, block, arguments)
is equal to
dispatch_async(queue, ^
{
if (block)
{
block(arguments);
}
});
Add pod 'macros_blocks/extra'
to Podfile
Trim Value in Range Value should be greater or equal then minimum and less or equal then maximum. Otherwise it will equal minimum if less or maximum if greater.
range_value(5, 1, 10); // 1 < 5 < 10 => 5
range_value(0, 1, 10); // 1 > 0 => 1
range_value(12, 1, 10); // 10 < 12 => 12
Safe Malloc
Return NULL
if malloc
size is 0.
size_t x = 0;
safe_malloc(x);
Install both 'blocks' and 'extra' macros.
Add pod 'macros_blocks/all'
to Podfile
#import <macros_blocks/macros_all.h>
Follow updates on twitter @okolodev
Changelog
0.0.3
0.0.2
0.0.1