DeleteObjcBlockPointer

Typehandler
DictionaryLCB
LibraryLiveCode Builder
Syntax
DeleteObjcBlockPointer(<pBlockPointer>)
Associationscom.livecode.objc
Summary

Delete an Objective-C block pointer.

Parameters
NameTypeDescription
pBlockPointer

An Objective-C block pointer created with CreateObjcBlockPointerFromHandler

Example
public handler AudioLibraryFinalize()
	if sRequestPermissionsCompletionHandler is not nothing then
		DeleteObjcBlockPointer(sRequestPermissionsCompletionHandler)
		put nothing into sRequestPermissionsCompletionHandler
	end if
end handler
RelatedHandler: CreateObjcBlockPointerFromHandler
Description

Use the DeleteObjcBlockPointer handler to delete an Objective-C block pointer created with CreateObjcBlockPointerFromHandler