ということで当初特徴としていた「無音」という文字は意図的に消している。一応、音量を絞るか、マナーモードにすれば音は鳴らなくなるので希望する方はそれを使って下さい。くれぐれも悪いことには使わないようお願いします(ちなみにカメラを上に向けると撮影できなくなってる)。
関連ブログ
iOS/iPhone/iPad/MacOSX プログラミング, Objective-C, Cocoaなど
2016年7月29日金曜日 | Published in Todayee, アプリ紹介 | 0 コメント
2016年7月28日木曜日 | Published in Todayee, アプリ紹介 | 1 コメント
2016年7月22日金曜日 | Published in Todayee, アプリ紹介 | 0 コメント
2016年7月12日火曜日 | Published in | 0 コメント
motionManager.deviceMotionUpdateInterval = 0.2 motionManager.startDeviceMotionUpdatesToQueue(NSOperationQueue.mainQueue()) { (motion, error) in if motion?.gravity.z < 0.75 { print("up side") } else { print("down side) } }
2016年6月21日火曜日 | Published in Today, アプリ紹介 | 2 コメント
2016年4月14日木曜日 | Published in AWS, 番外 | 0 コメント
dynamo.putItem({ "TableName" : tableName, "Item" : { "hash" : {"S" : hash}, "expirationTime" : {"N" : expirationTime.toString()}, // "created" : {"S" : now.toString()} }, "ConditionExpression" : "expirationTime < :nowTime OR attribute_not_exists(#hash)", "ExpressionAttributeNames" : { "#hash" : "hash", }, "ExpressionAttributeValues": { ":nowTime": {"N": nowTime.toString()}, }, }, function(err, data) { :
2015年12月23日水曜日 | Published in IconTimer, アプリ紹介 | 0 コメント
Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x00000000155d3f40 Triggered by Thread: 0
class Sound: NSObject { static var player:AVAudioPlayer? static func play(...) { if let sound = NSDataAsset(name: name) { do { : try player = AVAudioPlayer(data: sound.data, fileTypeHint: fileTypeHint)
class Sound: NSObject { static var player:AVAudioPlayer? static func play(...) { if let _ = player { player?.stop() } if let sound = NSDataAsset(name: name) { do { : try player = AVAudioPlayer(data: sound.data, fileTypeHint: fileTypeHint)